12 lines
189 B
GraphQL
12 lines
189 B
GraphQL
mutation CreateRequest($input: RequestInput!) {
|
|
createRequest(input: $input) {
|
|
request {
|
|
uuid
|
|
productUuid
|
|
quantity
|
|
sourceLocationUuid
|
|
userId
|
|
}
|
|
}
|
|
}
|