Firebase Database reference snapshot is not returning any data












0















I am trying to read some dummy data I have put into my Firebase database but cannot get it to return anything despite trying my best with following the documentation.



I have a JS file with Firebase initialized, and with this variable exported:



const database = firebase.database();


In a file I'm trying to read it in, I have the below:



import database from './firebase';
const dbRef = database.ref('users/');
dbRef.on('value', (snapshot) => {
console.log(snapshot.val());
});


Nothing gets logged out into the console. But when I log out just dbRef, I get the Reference object so it does seem to be connected properly:



Reference {repo: Repo, path: Path, queryParams_: QueryParams, orderByCalled_: false}
database: (...)
key: (...)
orderByCalled_: false
parent: (...)
path: Path {pieces_: Array(1), pieceNum_: 0}
queryParams_: QueryParams {limitSet_: false, startSet_: false, startNameSet_: false, endSet_: false, endNameSet_: false, …}
ref: (...)
repo: Repo {repoInfo_: RepoInfo, app: FirebaseAppImpl, dataUpdateCount: 0, statsListener_: null, eventQueue_: EventQueue, …}
root: (...)
__proto__: Query


I can't find where I've went wrong, would really appreciate the help. In my Firebase console, I am using Cloud Firestore by default rather than Realtime Database, not sure if that's making a difference.










share|improve this question





























    0















    I am trying to read some dummy data I have put into my Firebase database but cannot get it to return anything despite trying my best with following the documentation.



    I have a JS file with Firebase initialized, and with this variable exported:



    const database = firebase.database();


    In a file I'm trying to read it in, I have the below:



    import database from './firebase';
    const dbRef = database.ref('users/');
    dbRef.on('value', (snapshot) => {
    console.log(snapshot.val());
    });


    Nothing gets logged out into the console. But when I log out just dbRef, I get the Reference object so it does seem to be connected properly:



    Reference {repo: Repo, path: Path, queryParams_: QueryParams, orderByCalled_: false}
    database: (...)
    key: (...)
    orderByCalled_: false
    parent: (...)
    path: Path {pieces_: Array(1), pieceNum_: 0}
    queryParams_: QueryParams {limitSet_: false, startSet_: false, startNameSet_: false, endSet_: false, endNameSet_: false, …}
    ref: (...)
    repo: Repo {repoInfo_: RepoInfo, app: FirebaseAppImpl, dataUpdateCount: 0, statsListener_: null, eventQueue_: EventQueue, …}
    root: (...)
    __proto__: Query


    I can't find where I've went wrong, would really appreciate the help. In my Firebase console, I am using Cloud Firestore by default rather than Realtime Database, not sure if that's making a difference.










    share|improve this question



























      0












      0








      0








      I am trying to read some dummy data I have put into my Firebase database but cannot get it to return anything despite trying my best with following the documentation.



      I have a JS file with Firebase initialized, and with this variable exported:



      const database = firebase.database();


      In a file I'm trying to read it in, I have the below:



      import database from './firebase';
      const dbRef = database.ref('users/');
      dbRef.on('value', (snapshot) => {
      console.log(snapshot.val());
      });


      Nothing gets logged out into the console. But when I log out just dbRef, I get the Reference object so it does seem to be connected properly:



      Reference {repo: Repo, path: Path, queryParams_: QueryParams, orderByCalled_: false}
      database: (...)
      key: (...)
      orderByCalled_: false
      parent: (...)
      path: Path {pieces_: Array(1), pieceNum_: 0}
      queryParams_: QueryParams {limitSet_: false, startSet_: false, startNameSet_: false, endSet_: false, endNameSet_: false, …}
      ref: (...)
      repo: Repo {repoInfo_: RepoInfo, app: FirebaseAppImpl, dataUpdateCount: 0, statsListener_: null, eventQueue_: EventQueue, …}
      root: (...)
      __proto__: Query


      I can't find where I've went wrong, would really appreciate the help. In my Firebase console, I am using Cloud Firestore by default rather than Realtime Database, not sure if that's making a difference.










      share|improve this question
















      I am trying to read some dummy data I have put into my Firebase database but cannot get it to return anything despite trying my best with following the documentation.



      I have a JS file with Firebase initialized, and with this variable exported:



      const database = firebase.database();


      In a file I'm trying to read it in, I have the below:



      import database from './firebase';
      const dbRef = database.ref('users/');
      dbRef.on('value', (snapshot) => {
      console.log(snapshot.val());
      });


      Nothing gets logged out into the console. But when I log out just dbRef, I get the Reference object so it does seem to be connected properly:



      Reference {repo: Repo, path: Path, queryParams_: QueryParams, orderByCalled_: false}
      database: (...)
      key: (...)
      orderByCalled_: false
      parent: (...)
      path: Path {pieces_: Array(1), pieceNum_: 0}
      queryParams_: QueryParams {limitSet_: false, startSet_: false, startNameSet_: false, endSet_: false, endNameSet_: false, …}
      ref: (...)
      repo: Repo {repoInfo_: RepoInfo, app: FirebaseAppImpl, dataUpdateCount: 0, statsListener_: null, eventQueue_: EventQueue, …}
      root: (...)
      __proto__: Query


      I can't find where I've went wrong, would really appreciate the help. In my Firebase console, I am using Cloud Firestore by default rather than Realtime Database, not sure if that's making a difference.







      javascript firebase google-cloud-firestore






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Dec 30 '18 at 6:25









      Frank van Puffelen

      232k29380406




      232k29380406










      asked Dec 30 '18 at 5:23









      evscevsc

      374




      374
























          1 Answer
          1






          active

          oldest

          votes


















          2














          You're trying to use the Realtime Database API instead of the Firestore API. They are not at all the same database, and they don't share the same API. Use the Firestore docs to get started. You will use firebase.firestore() instead of firebase.database(). The API docs for Firestore start here.






          share|improve this answer
























          • Thank you, I must have went down the wrong pathway going through the documentation, did not realize there was a different set for Firestore

            – evsc
            Dec 30 '18 at 5:42











          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%2f53975464%2ffirebase-database-reference-snapshot-is-not-returning-any-data%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          2














          You're trying to use the Realtime Database API instead of the Firestore API. They are not at all the same database, and they don't share the same API. Use the Firestore docs to get started. You will use firebase.firestore() instead of firebase.database(). The API docs for Firestore start here.






          share|improve this answer
























          • Thank you, I must have went down the wrong pathway going through the documentation, did not realize there was a different set for Firestore

            – evsc
            Dec 30 '18 at 5:42
















          2














          You're trying to use the Realtime Database API instead of the Firestore API. They are not at all the same database, and they don't share the same API. Use the Firestore docs to get started. You will use firebase.firestore() instead of firebase.database(). The API docs for Firestore start here.






          share|improve this answer
























          • Thank you, I must have went down the wrong pathway going through the documentation, did not realize there was a different set for Firestore

            – evsc
            Dec 30 '18 at 5:42














          2












          2








          2







          You're trying to use the Realtime Database API instead of the Firestore API. They are not at all the same database, and they don't share the same API. Use the Firestore docs to get started. You will use firebase.firestore() instead of firebase.database(). The API docs for Firestore start here.






          share|improve this answer













          You're trying to use the Realtime Database API instead of the Firestore API. They are not at all the same database, and they don't share the same API. Use the Firestore docs to get started. You will use firebase.firestore() instead of firebase.database(). The API docs for Firestore start here.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Dec 30 '18 at 5:33









          Doug StevensonDoug Stevenson

          74k984105




          74k984105













          • Thank you, I must have went down the wrong pathway going through the documentation, did not realize there was a different set for Firestore

            – evsc
            Dec 30 '18 at 5:42



















          • Thank you, I must have went down the wrong pathway going through the documentation, did not realize there was a different set for Firestore

            – evsc
            Dec 30 '18 at 5:42

















          Thank you, I must have went down the wrong pathway going through the documentation, did not realize there was a different set for Firestore

          – evsc
          Dec 30 '18 at 5:42





          Thank you, I must have went down the wrong pathway going through the documentation, did not realize there was a different set for Firestore

          – evsc
          Dec 30 '18 at 5:42


















          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%2f53975464%2ffirebase-database-reference-snapshot-is-not-returning-any-data%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

          Monofisismo

          Angular Downloading a file using contenturl with Basic Authentication

          Olmecas