stufflog graphql server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
398 B

type Query {
"Find issue."
issue(id: String!): Issue!
"List issues."
issues(filter: IssueFilter): [Issue!]!
"Find project."
project(id: String!): Project!
"List projects."
projects(filter: ProjectFilter): [Project!]!
"Find log."
log(id: String!): Log!
"List logs."
logs(filter: LogFilter): [Log!]!
"Check the user session."
session: User
}