OBJECT

Query

link GraphQL Schema definition

  • type Query {
  • # Arguments
  • # limit: limit items in the results
  • users(limit: Int): [User]
  • # Arguments
  • # id: find by id
  • userById(id: String): User
  • # Arguments
  • # email: email
  • # password: password
  • logIn(email: String, password: String): User
  • # Arguments
  • # limit: limit items in the results
  • conversations(limit: Int): [Conversation]
  • # Arguments
  • # id: find by id
  • conversationById(id: String): Conversation
  • # Arguments
  • # limit: limit items in the results
  • messages(limit: Int): [Message]
  • # Arguments
  • # id: find by id
  • messageById(id: String): Message
  • }

link Require by

This element is not required by anyone