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

13 lines
251 B
GraphQL

mutation CreateRequestInCollection($data: CreateTeamRequestInput!, $collectionID: ID!) {
createRequestInCollection(data: $data, collectionID: $collectionID) {
id
collection {
id
team {
id
name
}
}
}
}