I recently switched to using firebase-bolt. I've been trying to do something like `root.child('collection').child('doc').hasChild('someKey')` When trying to compile this, it complains that the hasChild function is undefined. I tried going around it with: `root.child('collection').child('doc').child('someKey').exists()` And I got the same complaint about exist. I found a work around with " != null" but it would be nice if we could have those two functions out of the box.
I recently switched to using firebase-bolt.
I've been trying to do something like
root.child('collection').child('doc').hasChild('someKey')When trying to compile this, it complains that the hasChild function is undefined. I tried going around it with:
root.child('collection').child('doc').child('someKey').exists()And I got the same complaint about exist.
I found a work around with " != null" but it would be nice if we could have those two functions out of the box.