Skip to content

GraphQL Overview

Download GraphQL schema

Queries

Overview

Mutations

Overview

Objects

Overview

Interfaces

Overview

Unions

Overview

Enums

Overview

Inputs

Overview

TimelineQueryInput

Time range for the timeline (optional - defaults to full range if not provided)

binCount
Int!,non-null

Number of bins to divide the time range into (60-360, steps of 20)

timezone
String

Timezone for timestamp calculations and binning (IANA timezone identifier, e.g., 'America/New_York', 'UTC') Defaults to 'UTC' if not provided

Optional filters

Sample
{ "timeRange": { "__typename": "DateTimeFilter" }, "binCount": 40, "timezone": "Example String", "filters": { "__typename": "SessionFilter" } }

SeverityFilter

Sample
{ "in": [ "LOW" ] }

AccessibilityFilter

Sample
{ "in": [ "PUBLIC" ] }

OwnerFilter

Sample
{ "email": { "__typename": "StringFilter" } }

EnvironmentTypeFilter

Sample
{ "in": [ "Prod" ] }

EnvironmentFilter

Sample
{ "name": { "__typename": "StringFilter" }, "envType": { "__typename": "EnvironmentTypeFilter" } }

PlatformFilter

Sample
{ "type": { "__typename": "PlatformTypeFilter" } }

PlatformTypeFilter

in
isNull
Boolean
Sample
{ "in": [ "POWERPLATFORM" ], "isNull": true }
Referenced in

ToolFilter

Sample
{ "id": { "__typename": "StringFilter" } }
Referenced in

AgentFilter

search
String
accessibility
lastSession
foundationalModel
Sample
{ "search": "Example String", "severity": { "__typename": "SeverityFilter" }, "platform": { "__typename": "PlatformFilter" }, "environment": { "__typename": "EnvironmentFilter" }, "accessibility": { "__typename": "AccessibilityFilter" }, "owner": { "__typename": "OwnerFilter" }, "tools": { "__typename": "ToolFilter" }, "findings": { "__typename": "FindingFilter" }, "id": { "__typename": "StringFilter" }, "usage": { "__typename": "UsageRangeFilter" }, "lastSession": { "__typename": "DateRangeFilter" }, "foundationalModel": { "__typename": "StringFilter" } }

AgentOrderByInput

field
direction
Sample
{ "field": "NAME", "direction": "ASC" }

Scalars

Overview