Files
SillyTavern/poe_graphql/LoginWithVerificationCodeMutation.graphql
2023-04-03 22:10:58 +03:00

14 lines
306 B
GraphQL

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