UserWhere
Defines the searchable fields usable to find users
input UserWhere {
email: String
isApp: Boolean
name: String
}
Fields
UserWhere.email ● String scalar
The email of the user to match Note: only relevant for users who are people, applications don't have an email
UserWhere.isApp ● Boolean scalar
Matches users that are applications (or not - people)
UserWhere.name ● String scalar
The name of the user to match
Member Of
findUsers query