OBJECT
Query
link GraphQL Schema definition
- type Query {
- # Arguments
- # limit: limit items in the results
- (: Int): [User]
- # Arguments
- # id: find by id
- (: String): User
- # Arguments
- # email: email
- # password: password
- (: String, : String): User
- # Arguments
- # limit: limit items in the results
- (: Int): [Conversation]
- # Arguments
- # id: find by id
- (: String): Conversation
- # Arguments
- # limit: limit items in the results
- (: Int): [Message]
- # Arguments
- # id: find by id
- (: String): Message
- }
link Require by
This element is not required by anyone