javascript - Query by documentId in Firebase Function - Stack Overflow

When I query data from Firebase Firestore with documentId as field path, I get a different behaviour wh

When I query data from Firebase Firestore with documentId as field path, I get a different behaviour when running the script on webpage (javascript) and in Firebase Function (Node.js).

This javascript gives me perfect results:

firebase.firestore().collection('test')
  .where(firebase.firestore.FieldPath.documentId(), '<=', 'ccc')
  .get()
  .then(snapshots => { /* results are here */ });

by contrast the same code in Firebase Function (Node.js):

admin.firestore().collection('test')
  .where(admin.firestore.FieldPath.documentId(), '<=', 'ccc')
  .get()
  .then(snapshots => { /* ... */ });

gives me a error:

Error: { Error: a filter on __name__ must be a document resource name at ClientReadableStream._emitStatusIfDone (/user_code/node_modules/firebase-admin/node_modules/grpc/src/client.js:255:19) at ClientReadableStream._receiveStatus (/user_code/node_modules/firebase-admin/node_modules/grpc/src/client.js:233:8) at /user_code/node_modules/firebase-admin/node_modules/grpc/src/client.js:705:12 code: 3, metadata: Metadata { _internal_repr: {} } }

I use my own document ids and I want to query by these ids. I know I can walk around this problem by querying by some document's inner field, but my question: what is the reason for this different behaviour? Thanks a lot.

My firebase version is 3.17.4

Edit: This bug was solved and does not appear in Firebase version 3.18.2.

When I query data from Firebase Firestore with documentId as field path, I get a different behaviour when running the script on webpage (javascript) and in Firebase Function (Node.js).

This javascript gives me perfect results:

firebase.firestore().collection('test')
  .where(firebase.firestore.FieldPath.documentId(), '<=', 'ccc')
  .get()
  .then(snapshots => { /* results are here */ });

by contrast the same code in Firebase Function (Node.js):

admin.firestore().collection('test')
  .where(admin.firestore.FieldPath.documentId(), '<=', 'ccc')
  .get()
  .then(snapshots => { /* ... */ });

gives me a error:

Error: { Error: a filter on __name__ must be a document resource name at ClientReadableStream._emitStatusIfDone (/user_code/node_modules/firebase-admin/node_modules/grpc/src/client.js:255:19) at ClientReadableStream._receiveStatus (/user_code/node_modules/firebase-admin/node_modules/grpc/src/client.js:233:8) at /user_code/node_modules/firebase-admin/node_modules/grpc/src/client.js:705:12 code: 3, metadata: Metadata { _internal_repr: {} } }

I use my own document ids and I want to query by these ids. I know I can walk around this problem by querying by some document's inner field, but my question: what is the reason for this different behaviour? Thanks a lot.

My firebase version is 3.17.4

Edit: This bug was solved and does not appear in Firebase version 3.18.2.

Share edited Apr 8, 2018 at 18:15 zelig74 asked Feb 14, 2018 at 13:50 zelig74zelig74 5322 gold badges6 silver badges16 bronze badges 1
  • This looks like a bug to me. I've filed a bug report internally with the Firestore team. – Doug Stevenson Commented Feb 14, 2018 at 17:27
Add a ment  | 

1 Answer 1

Reset to default 11

This is indeed a feature omission from the Node SDK, which we will address in the next release.

You can work around this for now by directly passing a DocumentReference as such:

const coll = admin.firestore().collection('test')
coll
  .where(admin.firestore.FieldPath.documentId(), '<=', coll.doc('ccc'))
  .get()
  .then(snapshots => { /* ... */ });

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743666273a4487022.html

相关推荐

  • javascript - Query by documentId in Firebase Function - Stack Overflow

    When I query data from Firebase Firestore with documentId as field path, I get a different behaviour wh

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信