For the complete documentation index, see llms.txt. This page is also available as Markdown.

getIncidentEvidenceFilters

Per-option evidence counts for the Evidence-tab filter sidebar (own field excluded).

Examples

query GetIncidentEvidenceFilters($incidentId: String!, $input: IncidentEvidenceFilterInput) {
  getIncidentEvidenceFilters(incidentId: $incidentId, input: $input) {
    type
    items {
      value
      count
    }
  }
}

Variables

This is an example input showing all available input fields. Only fields marked as required in the schema are mandatory.

{
  "incidentId": "example",
  "input": {
    "conditionalFilters": [
      {
        "fieldName": "example",
        "values": ["example"],
        "condition": "OR"
      }
    ],
    "search": "example",
    "category": "CodeIssue",
    "itemLimit": 42,
    "itemOffset": 42
  }
}

Arguments

You can use the following argument(s) to customize your getIncidentEvidenceFilters query.

Argument
Description
Supported fields

incidentId String! required

conditionalFilters [IncidentConditionalFilterInput!] search String category EvidenceCategory itemLimit Int itemOffset Int

Fields

Return type: [IncidentEvidenceFilterGroup!]!

You can use the following field(s) to specify what information your getIncidentEvidenceFilters query will return. Please note that some fields may have their own subfields.

Field
Description
Supported fields

type String!

value String! count Int!

Last updated