Files
hoppscotch/packages/hoppscotch-app/helpers/backend/gql/mutations/CreateChildCollection.graphql
2022-02-04 15:44:36 +05:30

12 lines
184 B
GraphQL

mutation CreateChildCollection(
$childTitle: String!
$collectionID: ID!
) {
createChildCollection(
childTitle: $childTitle
collectionID: $collectionID
) {
id
}
}