interface AlertsResult { alerts: { edges?: { cursor?: string; node?: Alert; }[]; itemCount?: number; pageInfo?: PageInfo; } & Error; } Properties
alerts
alerts: { edges?: { cursor?: string; node?: Alert; }[]; itemCount?: number; pageInfo?: PageInfo; } & Error Type declaration
Optional edges?: {
cursor?: string;
node?: Alert;
}[]
Optional itemCount?: number
Optional pageInfo?: PageInfo
Result type for the
alertsandalertsByIdqueries.