Adam / poe /graphql /SignupWithVerificationCodeMutation.graphql
t.me/xtekky
poe api gpt-4
1396122
raw
history blame
308 Bytes
mutation SignupWithVerificationCodeMutation(
$verificationCode: String!
$emailAddress: String
$phoneNumber: String
) {
signupWithVerificationCode(
verificationCode: $verificationCode
emailAddress: $emailAddress
phoneNumber: $phoneNumber
) {
status
}
}