Co-authored-by: Vivek R <123vivekr@gmail.com> Co-authored-by: Liyas Thomas <liyascthomas@gmail.com>
13 lines
211 B
GraphQL
13 lines
211 B
GraphQL
mutation CreateRESTUserRequest(
|
|
$collectionID: ID!
|
|
$title: String!
|
|
$request: String!
|
|
) {
|
|
createRESTUserRequest(
|
|
collectionID: $collectionID
|
|
title: $title
|
|
request: $request
|
|
) {
|
|
id
|
|
}
|
|
}
|