diff options
Diffstat (limited to 'poe/graphql/SendVerificationCodeForLoginMutation.graphql')
-rw-r--r-- | poe/graphql/SendVerificationCodeForLoginMutation.graphql | 12 |
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 + } +} |