Skip to main content

documents_collection_ids

Creates, updates, deletes, gets or lists a documents_collection_ids resource.

Overview

Namedocuments_collection_ids
TypeResource
Idgoogle.firestore.documents_collection_ids

Fields

NameDatatypeDescription
collectionIdsarrayThe collection ids.
nextPageTokenstringA page token that may be used to continue the list.

Methods

NameAccessible byRequired ParamsDescription
list_collection_idsSELECTdatabasesId, documentsId, documentsId1, projectsIdLists 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 }}';