Files
hoppscotch/packages/hoppscotch-app/helpers/backend/gql/queries/GetCollectionChildren.graphql

9 lines
176 B
GraphQL

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