Files
hoppscotch/packages/hoppscotch-common/src/helpers/backend/gql/mutations/CreateRequestInCollection.graphql
2022-12-02 03:05:35 -05:00

13 lines
251 B
GraphQL

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