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.
21 lines
452 B
21 lines
452 B
type Query {
|
|
"Find issue."
|
|
issue(id: String!): Issue!
|
|
"List issues."
|
|
issues(filter: IssueFilter): [Issue!]!
|
|
|
|
"Find item."
|
|
item(id: String!): Item!
|
|
"List items."
|
|
items(filter: ItemFilter): [Item!]!
|
|
"List item tags."
|
|
itemTags: [String!]!
|
|
|
|
"Find project."
|
|
project(id: String!): Project!
|
|
"List projects."
|
|
projects(filter: ProjectFilter): [Project!]!
|
|
|
|
"Check the user session."
|
|
session: User
|
|
}
|