EddyVerbruggen / nativescript-plugin-firebase

:fire: NativeScript plugin for Firebase
https://firebase.google.com
MIT License
1.01k stars 444 forks source link

Stopping a realtime DB query #1616

Open MustafaCa opened 4 years ago

MustafaCa commented 4 years ago

Hi Eddy,

I need to stop the following query when the user switches to a different tab.

    firebase.query(
      onQueryEvent,
      "/groups/" + groupKey + "/messages/",
      {
        singleEvent: false,
        orderBy: {
          type: firebase.QueryOrderByType.CHILD,
          value: 'createdAt' // mandatory when type is 'child'
        }
      }
    );

I do see an off method in the RT DB source, but not sure how to use it.

Any suggestions?

Thanks, Mustafa.