api-client/packages/hoppscotch-selfhost-web/src/api/mutations/CreateGQLChildUserCollection.graphql
Nivedin 47e009267b
feat: collection level headers and authorization (#3505)
Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
2023-12-13 22:43:18 +05:30

14 lines
254 B
GraphQL

mutation CreateGQLChildUserCollection(
$title: String!
$parentUserCollectionID: ID!
$data: String
) {
createGQLChildUserCollection(
title: $title
parentUserCollectionID: $parentUserCollectionID
data: $data
) {
id
data
}
}