mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
14 lines
308 B
GraphQL
14 lines
308 B
GraphQL
mutation SignupWithVerificationCodeMutation(
|
|
$verificationCode: String!
|
|
$emailAddress: String
|
|
$phoneNumber: String
|
|
) {
|
|
signupWithVerificationCode(
|
|
verificationCode: $verificationCode
|
|
emailAddress: $emailAddress
|
|
phoneNumber: $phoneNumber
|
|
) {
|
|
status
|
|
}
|
|
}
|