INPUT_OBJECT

FindingReportFilterInput

link GraphQL Schema definition

  • input FindingReportFilterInput {
  • # Filter by projectId(s)
  • projectId: [String!]
  • # Filter by Report configuration Id(s).
  • # Either reportId or reportConfigurationId must be set, but not both.
  • reportConfigurationId: [String!]
  • # Filter by Report Id(s).
  • # Either reportId or reportConfigurationId must be set, but not both.
  • # When set, other filters such as reportConfigurationId, projectId and triggers
  • # are ignored.
  • reportId: [String!]
  • # Optional filter End date. If omitted, defaults to now
  • triggeredEnd: DateTime
  • # Optional filter Start date. If omitted, defaults to 7 days in the past
  • triggeredStart: DateTime
  • }