AboutSupportDeveloper GuideVersion 2.0.0

Result type for the alerts and alertsById queries.

interface AlertsResult {
    alerts: {
        edges?: {
            cursor?: string;
            node?: Alert;
        }[];
        itemCount?: number;
        pageInfo?: PageInfo;
    } & Error;
}

Properties

Properties

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

Generated using TypeDoc