Files
hoppscotch/packages/hoppscotch-common/src/helpers/backend/gql/queries/GetCollectionChildren.graphql
2023-12-13 22:35:44 +05:30

10 lines
183 B
GraphQL

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