1
0
Fork 0
GPT4FREE/poe/graphql/LoginWithVerificationCodeMutation.graphql
2023-03-29 21:10:42 +01:00

14 lines
306 B
GraphQL

mutation LoginWithVerificationCodeMutation(
$verificationCode: String!
$emailAddress: String
$phoneNumber: String
) {
loginWithVerificationCode(
verificationCode: $verificationCode
emailAddress: $emailAddress
phoneNumber: $phoneNumber
) {
status
}
}