aboutsummaryrefslogtreecommitdiffstats
path: root/src/services/graphql/contact.mutation.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/services/graphql/contact.mutation.ts')
-rw-r--r--src/services/graphql/contact.mutation.ts25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/services/graphql/contact.mutation.ts b/src/services/graphql/contact.mutation.ts
deleted file mode 100644
index b82fc07..0000000
--- a/src/services/graphql/contact.mutation.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-/**
- * Send mail mutation.
- */
-export const sendMailMutation = `mutation SendEmail(
- $subject: String!
- $body: String!
- $replyTo: String!
- $clientMutationId: String!
-) {
- sendEmail(
- input: {
- clientMutationId: $clientMutationId
- body: $body
- replyTo: $replyTo
- subject: $subject
- }
- ) {
- clientMutationId
- message
- sent
- origin
- replyTo
- to
- }
-}`;