poe api gpt-4

This commit is contained in:
t.me/xtekky
2023-03-29 21:10:42 +01:00
parent 81e033023e
commit 1396122423
36 changed files with 1411 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
mutation SendVerificationCodeForLoginMutation(
$emailAddress: String
$phoneNumber: String
) {
sendVerificationCode(
verificationReason: login
emailAddress: $emailAddress
phoneNumber: $phoneNumber
) {
status
}
}