Giter VIP home page Giter VIP logo

Comments (5)

thesandlord avatar thesandlord commented on August 30, 2024 6

Hey @grahamearley, we recently did a Hackathon and added query support to this library. I'll hopefully send a PR with this functionality soon, and it will allow you to get multiple documents from a collection easily. This has the big advantage of doing a single URLFetch instead of O(n) URLFetches.

Right now, I'm thinking the method call will look very much like the "get" method, but will have a param called "query" instead of "path" that will be a Firestore StructuredQuery.

I'm thinking it will look something like this:

query(query, email, key, projectId) {
  query_(query, email, key, projectId);
}

getAllDocuments(path, email, key, projectId) {
  var query = {
    from: [{collectionId: path}]
  };
  query_(query, email, key, projectId);
}

query_(query, email, key, projectId) {
  // Code to Query and Return Documents
}

from firestoregoogleappsscript.

grahamearley avatar grahamearley commented on August 30, 2024

Awesome! The lack of query support is definitely a big hole in this library — and this is gonna provide a much better solution to getting a list of documents than the one I proposed!

Looking forward to the PR.

from firestoregoogleappsscript.

thesandlord avatar thesandlord commented on August 30, 2024

#6

from firestoregoogleappsscript.

grahamearley avatar grahamearley commented on August 30, 2024

Currently this is also done in #10 by using the REST API call for getting all documents. I'll keep this issue open, though, because using the structured query method in #6 would be great, once we get that PR merged.

from firestoregoogleappsscript.

grahamearley avatar grahamearley commented on August 30, 2024

Covered by #28 and released in v16!

from firestoregoogleappsscript.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.