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.
37 lines
780 B
37 lines
780 B
type Issue {
|
|
id: String!
|
|
projectId: String!
|
|
ownerId: String!
|
|
assigneeId: String!
|
|
statusStage: Int!
|
|
statusName: String!
|
|
createdTime: Time!
|
|
updatedTime: Time!
|
|
dueTime: Time
|
|
name: String!
|
|
title: String!
|
|
description: String!
|
|
|
|
project: Project
|
|
owner: User
|
|
assignee: User
|
|
}
|
|
|
|
input IssueFilter {
|
|
"Filter by issue IDs (mostly used internally by data loaders)"
|
|
issueIds: [String!]
|
|
"Filter by project IDs"
|
|
projectIds: [String!]
|
|
"Filter by owner IDs"
|
|
ownerIds: [String!]
|
|
"Filter by assignee IDs"
|
|
assigneeIds: [String!]
|
|
"Text search"
|
|
search: String
|
|
"Earliest stage (inclusive)"
|
|
minStage: Int
|
|
"Latest stage (inclusive)"
|
|
maxStage: Int
|
|
"Limit the result set"
|
|
limit: Int
|
|
}
|