Strise Connect API Docs
Queries

alerts

BETA FEATURE: This query is in beta and will change without warning. Retrieve alerts.

query Alerts($where: AlertsWhereInput!) {
  alerts(where: $where) {
    pageInfo {
      size
      offset
      totalSize
      nextPageOffset
    }
    edges {
      node {
        id
        kind
        insertedAt
        computedAt
        state
        resolvedBy {
          id
          name
          avatar
          email
          accountKind
        }
        resolvedAt
      }
      monitoredEntityId
      monitoredEntity {
        ... on Company {
          id
          name
        }
        ... on PrivatePerson {
          id
          name
        }
      }
    }
  }
}
input AlertsWhereInput {
  entity: ID
  kinds: [DatasetKind!]
  states: [AlertState!]
  page: AlertPageInfoInput
  period: TimespanInput
  entityKind: EntityKind
}

Arguments

where AlertsWhereInput! non-null input

AlertsWhereInput!

Type

AlertConnection object

AlertConnection

Response Fields

pageInfo PageInfo! non-null object

PageInfo!

edges [AlertConnectionEdge!]! non-null object

[AlertConnectionEdge!]!

On this page