OBJECT

Query

link GraphQL Schema definition

  • type Query {
  • user: User
  • # Arguments
  • # page: Offset from the first record
  • # per_page: Number of records returned for every request
  • # email: Filter users having this email-id
  • # phone: Filter users having this phone number
  • # house_id: Filter users which are current tenants of this house
  • users(page: Int, per_page: Int, email: String, phone: String, house_id: Int): [User]
  • }

link Require by

This element is not required by anyone