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.

60 lines
1.5 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. type Issue {
  2. "The issue ID."
  3. id: String!
  4. "The time at which the issue is created."
  5. createdTime: Time!
  6. "The time at which the issue was updated."
  7. updatedTime: Time!
  8. "Optionally, when this issue is due."
  9. dueTime: Time
  10. "The name of the issue, used in lists."
  11. name: String!
  12. "The issue title. This can be longer than the name."
  13. title: String!
  14. "The description of the issue, in markdown."
  15. description: String!
  16. "Parent project."
  17. project: Project
  18. "The issue's owner/creator."
  19. owner: User
  20. "The issue assignee."
  21. assignee: User
  22. "The issue status."
  23. status: ProjectStatus!
  24. }
  25. input IssueFilter {
  26. "Filter by issue IDs. (mostly used internally by data loaders)"
  27. issueIds: [String!]
  28. "Filter by project IDs."
  29. projectIds: [String!]
  30. "Filter by owner IDs."
  31. ownerIds: [String!]
  32. "Filter by assignee IDs."
  33. assigneeIds: [String!]
  34. "Text search."
  35. search: String
  36. "Earliest stage. (inclusive)"
  37. minStage: Int
  38. "Latest stage. (inclusive)"
  39. maxStage: Int
  40. "Limit the result set."
  41. limit: Int
  42. }
  43. input IssueCreateInput {
  44. "Project ID."
  45. projectId: String!
  46. "Status name."
  47. statusName: String!
  48. "A name for the issue."
  49. name: String!
  50. "Description of the issue."
  51. description: String!
  52. "Assign this issue, will default to unassigned."
  53. assigneeId: String
  54. "A date when this issue is due."
  55. dueTime: Time
  56. "Optional title to use instead of the name when not in a list."
  57. title: String
  58. }