Skip to content

Commit ce65ff2

Browse files
update readme.md
1 parent 3d8ef12 commit ce65ff2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,16 @@ You can get full Graphql file schema in `/src/schema.gql` file
104104

105105
- user
106106
Fetch user and his/her forms
107+
- isPhoneExist
108+
return true if user with this phone exists
109+
- isEmailExist
110+
return true if user with this email exists email exists
107111

108112
```graphql
109113
type Query {
110114
user(email: String, phone: String): User
115+
isEmailExist(email: String!): Boolean!
116+
isPhoneExist(phone: String!): Boolean!
111117
}
112118
```
113119

0 commit comments

Comments
 (0)