Retrieve entire document as array of entriesHow to loop through a plain JavaScript object with the objects as members?How do I check if an array includes an object in JavaScript?How to append something to an array?How to insert an item into an array at a specific index (JavaScript)?$(document).ready equivalent without jQuerySort array of objects by string property valueHow do I empty an array in JavaScript?Loop through an array in JavaScriptHow to check if an object is an array?How do I remove a particular element from an array in JavaScript?For-each over an array in JavaScript?

Do simulator games use a realistic trajectory to get into orbit?

Is open-sourcing the code of a webapp not recommended?

Is it possible to 'live off the sea'

Orange material in grout lines - need help to identify

What are the peak hours for public transportation in Paris?

What is the actual quality of machine translations?

Is an early checkout possible at a hotel before its reception opens?

Does a 3rd-level Wolf Totem barbarian get advantage against enemies when an ally is within 5 feet of the enemy?

How did they achieve the Gunslinger's shining eye effect in Westworld?

PhD - Well known professor or well known school?

What makes Ada the language of choice for the ISS's safety-critical systems?

My coworkers think I had a long honeymoon. Actually I was diagnosed with cancer. How do I talk about it?

Do any instruments not produce overtones?

Inconsistent behavior of compiler optimization of unused string

How do I write "Show, Don't Tell" as a person with Asperger Syndrome?

Can anyone identify this tank?

Indirectly defined macros: Undefined macro with "@" does not trigger compile error

Soft question: Examples where lack of mathematical rigour cause security breaches?

Understanding the TeXlive release cycle: What is the meaning of a TeXlive release and is it ever 'finished'?

What can I, as a user, do about offensive reviews in App Store?

Different pedals/effects for low strings/notes than high

How to tell your grandparent to not come to fetch you with their car?

How to build suspense or so to establish and justify xenophobia of characters in the eyes of the reader?

When conversion from Integer to Single may lose precision



Retrieve entire document as array of entries


How to loop through a plain JavaScript object with the objects as members?How do I check if an array includes an object in JavaScript?How to append something to an array?How to insert an item into an array at a specific index (JavaScript)?$(document).ready equivalent without jQuerySort array of objects by string property valueHow do I empty an array in JavaScript?Loop through an array in JavaScriptHow to check if an object is an array?How do I remove a particular element from an array in JavaScript?For-each over an array in JavaScript?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I have a collection in Firestore with the following structure:



Publications 
PubData <---- This is a Doc
1892872 <---- This is a map
Name: abc
Id: 123
1892875 <---- This is a map
Name: abc
Id: 123


Querying the PubData document:



fb.publicationsCollection
.doc("pubdata")
.get()
.then(res =>
let pubData = res.data();
)


returns the following data:



1892872: …, 1892875: …


How can I return this as an array, so I can iterate over it with a for loop?










share|improve this question




























    0















    I have a collection in Firestore with the following structure:



    Publications 
    PubData <---- This is a Doc
    1892872 <---- This is a map
    Name: abc
    Id: 123
    1892875 <---- This is a map
    Name: abc
    Id: 123


    Querying the PubData document:



    fb.publicationsCollection
    .doc("pubdata")
    .get()
    .then(res =>
    let pubData = res.data();
    )


    returns the following data:



    1892872: …, 1892875: …


    How can I return this as an array, so I can iterate over it with a for loop?










    share|improve this question
























      0












      0








      0








      I have a collection in Firestore with the following structure:



      Publications 
      PubData <---- This is a Doc
      1892872 <---- This is a map
      Name: abc
      Id: 123
      1892875 <---- This is a map
      Name: abc
      Id: 123


      Querying the PubData document:



      fb.publicationsCollection
      .doc("pubdata")
      .get()
      .then(res =>
      let pubData = res.data();
      )


      returns the following data:



      1892872: …, 1892875: …


      How can I return this as an array, so I can iterate over it with a for loop?










      share|improve this question














      I have a collection in Firestore with the following structure:



      Publications 
      PubData <---- This is a Doc
      1892872 <---- This is a map
      Name: abc
      Id: 123
      1892875 <---- This is a map
      Name: abc
      Id: 123


      Querying the PubData document:



      fb.publicationsCollection
      .doc("pubdata")
      .get()
      .then(res =>
      let pubData = res.data();
      )


      returns the following data:



      1892872: …, 1892875: …


      How can I return this as an array, so I can iterate over it with a for loop?







      javascript firebase google-cloud-firestore






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 24 at 16:11









      ogotogot

      8612




      8612






















          2 Answers
          2






          active

          oldest

          votes


















          2














          You can iterate an object's properties with a foreach loop:



          const pubData = res.data();
          Object.keys(pubData).forEach(function(key)
          // key is 1892872, pubData[key] is the associated object
          console.log(key, pubData[key]);
          );


          Since you didn't really say what exactly you wanted the array to contain, I'll leave it up to you to figure out how the keys and values of the document's map should be represented in that final array.






          share|improve this answer






























            2














            Since you asked for an array of entries, you can use Object.entries:



            fb.publicationsCollection
            .doc("pubdata")
            .get()
            .then(res =>
            let pubData = Object.entries(res.data());
            // pubData will look like:
            // [["1892872", …], ["1892875", …]]
            )





            share|improve this answer

























              Your Answer






              StackExchange.ifUsing("editor", function ()
              StackExchange.using("externalEditor", function ()
              StackExchange.using("snippets", function ()
              StackExchange.snippets.init();
              );
              );
              , "code-snippets");

              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "1"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader:
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              ,
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );













              draft saved

              draft discarded


















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55325799%2fretrieve-entire-document-as-array-of-entries%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              2














              You can iterate an object's properties with a foreach loop:



              const pubData = res.data();
              Object.keys(pubData).forEach(function(key)
              // key is 1892872, pubData[key] is the associated object
              console.log(key, pubData[key]);
              );


              Since you didn't really say what exactly you wanted the array to contain, I'll leave it up to you to figure out how the keys and values of the document's map should be represented in that final array.






              share|improve this answer



























                2














                You can iterate an object's properties with a foreach loop:



                const pubData = res.data();
                Object.keys(pubData).forEach(function(key)
                // key is 1892872, pubData[key] is the associated object
                console.log(key, pubData[key]);
                );


                Since you didn't really say what exactly you wanted the array to contain, I'll leave it up to you to figure out how the keys and values of the document's map should be represented in that final array.






                share|improve this answer

























                  2












                  2








                  2







                  You can iterate an object's properties with a foreach loop:



                  const pubData = res.data();
                  Object.keys(pubData).forEach(function(key)
                  // key is 1892872, pubData[key] is the associated object
                  console.log(key, pubData[key]);
                  );


                  Since you didn't really say what exactly you wanted the array to contain, I'll leave it up to you to figure out how the keys and values of the document's map should be represented in that final array.






                  share|improve this answer













                  You can iterate an object's properties with a foreach loop:



                  const pubData = res.data();
                  Object.keys(pubData).forEach(function(key)
                  // key is 1892872, pubData[key] is the associated object
                  console.log(key, pubData[key]);
                  );


                  Since you didn't really say what exactly you wanted the array to contain, I'll leave it up to you to figure out how the keys and values of the document's map should be represented in that final array.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Mar 24 at 16:17









                  Doug StevensonDoug Stevenson

                  92.2k10105125




                  92.2k10105125























                      2














                      Since you asked for an array of entries, you can use Object.entries:



                      fb.publicationsCollection
                      .doc("pubdata")
                      .get()
                      .then(res =>
                      let pubData = Object.entries(res.data());
                      // pubData will look like:
                      // [["1892872", …], ["1892875", …]]
                      )





                      share|improve this answer





























                        2














                        Since you asked for an array of entries, you can use Object.entries:



                        fb.publicationsCollection
                        .doc("pubdata")
                        .get()
                        .then(res =>
                        let pubData = Object.entries(res.data());
                        // pubData will look like:
                        // [["1892872", …], ["1892875", …]]
                        )





                        share|improve this answer



























                          2












                          2








                          2







                          Since you asked for an array of entries, you can use Object.entries:



                          fb.publicationsCollection
                          .doc("pubdata")
                          .get()
                          .then(res =>
                          let pubData = Object.entries(res.data());
                          // pubData will look like:
                          // [["1892872", …], ["1892875", …]]
                          )





                          share|improve this answer















                          Since you asked for an array of entries, you can use Object.entries:



                          fb.publicationsCollection
                          .doc("pubdata")
                          .get()
                          .then(res =>
                          let pubData = Object.entries(res.data());
                          // pubData will look like:
                          // [["1892872", …], ["1892875", …]]
                          )






                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Mar 24 at 16:31

























                          answered Mar 24 at 16:20









                          Scott RudigerScott Rudiger

                          901414




                          901414



























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid


                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.

                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55325799%2fretrieve-entire-document-as-array-of-entries%23new-answer', 'question_page');

                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                              Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                              Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript