This commit is contained in:
Lakhan Samani
2021-07-15 00:39:48 +05:30
parent 27264c6e29
commit 65fb655f66
4 changed files with 47 additions and 117 deletions

View File

@@ -31,10 +31,6 @@ type Error {
reason: String!
}
type Response {
message: String!
}
type LoginResponse {
message: String!
accessToken: String
@@ -65,7 +61,7 @@ input VerifySignupTokenInput {
}
type Mutation {
verifySignupToken(params: VerifySignupTokenInput!): Response!
verifySignupToken(params: VerifySignupTokenInput!): LoginResponse!
basicAuthSignUp(params: BasicAuthSignupInput!): BasicAuthSignupResponse!
login(params: LoginInput!): LoginResponse!
}