diff --git a/admin/src/graphql/createPendingCreation.js b/admin/src/graphql/createPendingCreation.js new file mode 100644 index 000000000..a6618e356 --- /dev/null +++ b/admin/src/graphql/createPendingCreation.js @@ -0,0 +1,13 @@ +import gql from 'graphql-tag' + +export const createPendingCreation = gql` + query ($email: String!, $amount: Int!, $note: String!, $creationDate: String!, $moderator: Int!) { + createPendingCreation( + email: $email + amount: $amount + note: $note + creationDate: $creationDate + moderator: $moderator + ) + } +`