- AgentReferenceFilter
{ "id": { "__typename": "StringFilter" }, "search": "Example String", "type": { "__typename": "StringFilter" }, "enabled": { "__typename": "BooleanFilter" }, "environment": { "__typename": "EnvironmentFilter" }, "findings": { "__typename": "FindingFilter" } }
{ "id": { "__typename": "StringFilter" }, "search": "Example String", "enabled": { "__typename": "BooleanFilter" }, "type": { "__typename": "StringFilter" }, "environment": { "__typename": "EnvironmentFilter" }, "findings": { "__typename": "FindingFilter" } }
{ "field": "NAME", "direction": "ASC" }
{ "field": "NAME", "direction": "ASC" }
{ "field": "NAME", "direction": "ASC" }
Simplified filter for agent references in issue queries
Filter by agent ID(s)
Filter by agent name
Filter by agent's platform
Filter by agent's environment
{ "id": { "__typename": "StringFilter" }, "name": { "__typename": "StringFilter" }, "platform": { "__typename": "PlatformFilter" }, "environment": { "__typename": "EnvironmentFilter" } }
Filter for findings
Filter by finding type
Filter by finding ID
{ "type": { "__typename": "FindingTypeFilter" }, "id": { "__typename": "StringFilter" } }
Filter for finding types
Finding types to include in the results
Operator to apply for matching finding types (IN = match if ANY type is present, AND = match if ALL types are present)
{ "in": [ "INSTRUCTIONS_NOT_CLEAR" ], "operator": "IN" }
Input for defining condition groups
Optional filter on agent properties
Optional filter on tool properties (for TOOL_INVOCATION trigger)
Optional filter on findings
Optional filter on runtime detections
Optional nested condition groups
{ "agentFilter": { "__typename": "AgentFilter" }, "toolFilter": { "__typename": "ToolFilterInput" }, "findingFilter": { "__typename": "FindingFilter" }, "detectionFilter": { "__typename": "DetectionFilter" }, "groups": [ { "__typename": "PolicyConditionGroupInput" } ] }
Input for CREATE_ISSUE action parameters
Severity to assign when creating an issue
{ "issueSeverity": "LOW" }
Input for defining policy actions
Type of action to execute
Parameters for CREATE_ISSUE action (required when type is CREATE_ISSUE)
{ "type": "CREATE_ISSUE", "createIssueParams": { "__typename": "PolicyCreateIssueActionParamsInput" } }