query

userExists

Check whether user is already registered or not to the sales channel.
Arguments
Response
user_exists
Boolean
Boolean which specifies if user is registered or not.
Query
1query userExists($q: String) {
2 userExists(q: $q) {
3 user_exists
4 }
5}
Try it
Input Variables
1{
2 "q": "q"
3}
Response
1{
2 "userExists": {
3 "user_exists": true
4 }
5}