summaryrefslogtreecommitdiffstats
path: root/poe/graphql/SendVerificationCodeForLoginMutation.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'poe/graphql/SendVerificationCodeForLoginMutation.graphql')
-rw-r--r--poe/graphql/SendVerificationCodeForLoginMutation.graphql12
1 files changed, 12 insertions, 0 deletions
diff --git a/poe/graphql/SendVerificationCodeForLoginMutation.graphql b/poe/graphql/SendVerificationCodeForLoginMutation.graphql
new file mode 100644
index 00000000..45af4799
--- /dev/null
+++ b/poe/graphql/SendVerificationCodeForLoginMutation.graphql
@@ -0,0 +1,12 @@
+mutation SendVerificationCodeForLoginMutation(
+ $emailAddress: String
+ $phoneNumber: String
+) {
+ sendVerificationCode(
+ verificationReason: login
+ emailAddress: $emailAddress
+ phoneNumber: $phoneNumber
+ ) {
+ status
+ }
+}