Initial commit from monorepo
This commit is contained in:
8
graphql/operations/team/exchange/CreateOffer.graphql
Normal file
8
graphql/operations/team/exchange/CreateOffer.graphql
Normal file
@@ -0,0 +1,8 @@
|
||||
mutation CreateOffer($input: OfferInput!) {
|
||||
createOffer(input: $input) {
|
||||
success
|
||||
message
|
||||
workflowId
|
||||
offerUuid
|
||||
}
|
||||
}
|
||||
11
graphql/operations/team/exchange/CreateRequest.graphql
Normal file
11
graphql/operations/team/exchange/CreateRequest.graphql
Normal file
@@ -0,0 +1,11 @@
|
||||
mutation CreateRequest($input: RequestInput!) {
|
||||
createRequest(input: $input) {
|
||||
request {
|
||||
uuid
|
||||
productUuid
|
||||
quantity
|
||||
sourceLocationUuid
|
||||
userId
|
||||
}
|
||||
}
|
||||
}
|
||||
9
graphql/operations/team/exchange/GetRequests.graphql
Normal file
9
graphql/operations/team/exchange/GetRequests.graphql
Normal file
@@ -0,0 +1,9 @@
|
||||
query GetRequests($userId: String!) {
|
||||
getRequests(userId: $userId) {
|
||||
uuid
|
||||
productUuid
|
||||
quantity
|
||||
sourceLocationUuid
|
||||
userId
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user