Firestore: how to perform a query with inequality / not equals

后端 未结 7 1663
南笙
南笙 2020-11-22 05:05

I want select from Firestore collection just articles written NOT by me.
Is it really so hard?

Every article has field "owner_uid".

相关标签:
7条回答
  • 2020-11-22 05:43
    1. Track all user id in a single document (or two)

    2. filter unwanted id out

    3. Use "where in"

    
    var mylistofidwherenotme =  // code to fetch the single document where you tracked all user id, then filter yourself out
    
    
    database.collection("articles").where("blogId", "in", mylistofidwherenotme)
    
    
    0 讨论(0)
  • 2020-11-22 05:45

    EDIT Sep 18 2020

    The Firebase release notes suggest there are now not-in and != queries. (Proper documentation is now available.)

    • not-in finds documents where a specified field’s value is not in a specified array.
    • != finds documents where a specified field's value does not equal the specified value.

    Neither query operator will match documents where the specified field is not present. Be sure the see the documentation for the syntax for your language.

    ORIGINAL ANSWER

    Firestore doesn't provide inequality checks. According to the documentation:

    The where() method takes three parameters: a field to filter on, a comparison operation, and a value. The comparison can be <, <=, ==, >, or >=.

    Inequality operations don't scale like other operations that use an index. Firestore indexes are good for range queries. With this type of index, for an inequality query, the backend would still have to scan every document in the collection in order to come up with results, and that's extremely bad for performance when the number of documents grows large.

    If you need to filter your results to remove particular items, you can still do that locally.

    You also have the option of using multiple queries to exclude a distinct value. Something like this, if you want everything except 12. Query for value < 12, then query for value > 12, then merge the results in the client.

    0 讨论(0)
  • 2020-11-22 05:50

    Updating the answer of Darren G, which caused "TypeError: Converting circular structure to JSON". When we perform the filter operation, the whole firebase object was added back to the array instead of just the data. We can solve this by chaining the filter method with the map method.

    let articles = []
    let articlesRefs = await db.collection('articles').get();
    
    articles = articlesRefs.docs
               .filter((article) => article.data.uid !== request.auth.uid) //Get Filtered Docs
               .map((article) => article.data()); //Process Docs to Data
    
    return articles
    
    

    FYI: This is an expensive operation because you will fetching all the articles from database and then filtering them locallly.

    0 讨论(0)
  • 2020-11-22 05:54
    let query = docRef.where('role','>',user_role).where('role','<',user_role).get()
    

    This is not functioning as the "not equal" operation in firestore with string values

    0 讨论(0)
  • 2020-11-22 05:55

    This is an example of how I solved the problem in JavaScript:

    let articlesToDisplay = await db
      .collection('articles')
      .get()
      .then((snapshot) => {
        let notMyArticles = snapshot.docs.filter( (article) => 
          article.data().owner_uid !== request.auth.uid
        )
        return notMyArticles
      })
    

    It fetches all documents and uses Array.prototype.filter() to filter out the ones you don't want. This can be run server-side or client-side.

    0 讨论(0)
  • 2020-11-22 05:59

    You can filter the array of objects within the javascript code.

    var data=[Object,Object,Object] // this is your object array
    var newArray = data.filter(function(el) {
       return el.gender != 'Male';
    });
    
    0 讨论(0)
提交回复
热议问题