documents_collection_ids
Creates, updates, deletes, gets or lists a documents_collection_ids
resource.
Overview
Name | documents_collection_ids |
Type | Resource |
Id | google.firestore.documents_collection_ids |
Fields
Name | Datatype | Description |
---|---|---|
collectionIds | array | The collection ids. |
nextPageToken | string | A page token that may be used to continue the list. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_collection_ids | SELECT | databasesId, documentsId, documentsId1, projectsId | Lists all the collection IDs underneath a document. |
SELECT
examples
Lists all the collection IDs underneath a document.
SELECT
collectionIds,
nextPageToken
FROM google.firestore.documents_collection_ids
WHERE databasesId = '{{ databasesId }}'
AND documentsId = '{{ documentsId }}'
AND documentsId1 = '{{ documentsId1 }}'
AND projectsId = '{{ projectsId }}';