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.

36 lines
780 B

  1. type Issue {
  2. id: String!
  3. projectId: String!
  4. ownerId: String!
  5. assigneeId: String!
  6. statusStage: Int!
  7. statusName: String!
  8. createdTime: Time!
  9. updatedTime: Time!
  10. dueTime: Time
  11. name: String!
  12. title: String!
  13. description: String!
  14. project: Project
  15. owner: User
  16. assignee: User
  17. }
  18. input IssueFilter {
  19. "Filter by issue IDs (mostly used internally by data loaders)"
  20. issueIds: [String!]
  21. "Filter by project IDs"
  22. projectIds: [String!]
  23. "Filter by owner IDs"
  24. ownerIds: [String!]
  25. "Filter by assignee IDs"
  26. assigneeIds: [String!]
  27. "Text search"
  28. search: String
  29. "Earliest stage (inclusive)"
  30. minStage: Int
  31. "Latest stage (inclusive)"
  32. maxStage: Int
  33. "Limit the result set"
  34. limit: Int
  35. }