Files
hoppscotch/packages/hoppscotch-app/helpers/backend/gql/queries/GetCollectionChildrenIDs.graphql
2022-02-07 23:42:52 +05:30

8 lines
168 B
GraphQL

query GetCollectionChildrenIDs($collectionID: ID!, $cursor: String) {
collection(collectionID: $collectionID) {
children(cursor: $cursor) {
id
}
}
}