type Issue { id: String! createdTime: Time! updatedTime: Time! dueTime: Time name: String! title: String! description: String! project: Project owner: User assignee: User status: ProjectStatus! } 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 } input IssueCreateInput { "Project ID" projectId: String! "Status stage" statusStage: Int! "Status name" statusName: String! "A name for the issue." name: String! "Description of the issue." description: String! "Assign this issue, will default to unassigned" assigneeId: String "A date when this issue is due" dueTime: Time "Optional title to use instead of the name when not in a list." title: String }