Files
hoppscotch/packages/hoppscotch-app/helpers/backend/gql/queries/GetCollectionChildren.graphql
2022-02-04 15:37:32 +05:30

9 lines
142 B
GraphQL

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