Files
hoppscotch/packages/hoppscotch-common/src/helpers/backend/gql/queries/GetCollectionChildren.graphql
Ankit Sridhar 8bdb9a657f feat: self host packaging (HBE-166) (#41)
Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
2023-04-04 03:17:18 +05:30

9 lines
172 B
GraphQL

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