Update server/graph/schema.graphqls
All checks were successful
deploy / deploy (push) Successful in 1m28s

This commit is contained in:
to 2024-02-01 10:35:11 +00:00
parent 853f8c44bb
commit 416640ac13

View File

@ -610,7 +610,6 @@ input GetUserRequest {
}
type Mutation {
is_registered(email: String): AuthResponse! # custom api
signup(params: SignUpInput!): AuthResponse!
# Deprecated from v1.2.0
mobile_signup(params: MobileSignUpInput): AuthResponse!
@ -652,6 +651,7 @@ type Query {
meta: Meta!
session(params: SessionQueryInput): AuthResponse!
profile: User!
is_registered(email: String): AuthResponse! # custom api
validate_jwt_token(params: ValidateJWTTokenInput!): ValidateJWTTokenResponse!
validate_session(params: ValidateSessionInput): ValidateSessionResponse!
# admin only apis