You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
collection: FireStore.collection(Room),
schema: {
contents: 'string',
see: 'boolean',
uid: 'reference',
},
I am creating a resource like this right now.
However, the collection is a sub-collection, so in order to fetch data, the doc id of the parent collection is required.
I succeeded in getting the id value of the parent element through the link by query, but the element was
FireStore.collection(Chat/${chatId}/Room),
It keeps failing to switch to.
Is there a way to get the query right away?
If that doesn't work, is there any way I can help you with this?
The text was updated successfully, but these errors were encountered:
collection: FireStore.collection(
Room
),schema: {
contents: 'string',
see: 'boolean',
uid: 'reference',
},
I am creating a resource like this right now.
However, the collection is a sub-collection, so in order to fetch data, the doc id of the parent collection is required.
I succeeded in getting the id value of the parent element through the link by query, but the element was
FireStore.collection(
Chat/${chatId}/Room
),It keeps failing to switch to.
Is there a way to get the query right away?
If that doesn't work, is there any way I can help you with this?
The text was updated successfully, but these errors were encountered: