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 ConnectDeletedEntity {
          isDeleted
          id
          name
          addresses {
            country {
              code
              name
            }
            addressLine
            city
            zipCode
            addressKind
          }
          countries {
            relationship
            country {
              code
              name
            }
          }
          identifiers {
            value
            country
            kind
            description
          }
          sanctionInfo {
            sanctioned
            sanctions {
              sanctionedBy
              sourceReference
              sanctionedSince
              program
              sourceUrl
              confirmedMatch
            }
          }
          ams {
            id
            entityId
            published
            publisher
            title
            summary
            bodyText
            url
            clusteredEvents {
              id
              url
            }
            authors
            images
            entityMentions {
              text
              span {
                start
                end
              }
              entityType
              containingPhrase
              containingPhraseSpan {
                start
                end
              }
              amsPredictions {
                context {
                  start
                  end
                }
                classification
                score
              }
              field
              amsClassification
            }
            topicMentions {
              topic
              mentions
            }
            eventKind
            createdBy {
              id
              name
              avatar
              email
              accountKind
            }
            behindPaywall
          }
          flags
          riskSignals {
            signals {
              name
              riskFactors {
                name
                dateTime
                paths {
                  edges {
                    kinds
                    node {
                      ... on BusinessPerson {
                        id
                        name
                      }
                      ... on Company {
                        id
                        name
                      }
                      ... on ConnectDeletedEntity {
                        isDeleted
                        id
                        name
                        addresses {
                          country {
                            code
                            name
                          }
                          addressLine
                          city
                          zipCode
                          addressKind
                        }
                        countries {
                          relationship
                          country {
                            code
                            name
                          }
                        }
                        identifiers {
                          value
                          country
                          kind
                          description
                        }
                        sanctionInfo {
                          sanctioned
                          sanctions {
                            sanctionedBy
                            sourceReference
                            sanctionedSince
                            program
                            sourceUrl
                            confirmedMatch
                          }
                        }
                        ams {
                          id
                          entityId
                          published
                          publisher
                          title
                          summary
                          bodyText
                          url
                          clusteredEvents {
                            id
                            url
                          }
                          authors
                          images
                          entityMentions {
                            text
                            span {
                              start
                              end
                            }
                            entityType
                            containingPhrase
                            containingPhraseSpan {
                              start
                              end
                            }
                            amsPredictions {
                              context {
                                start
                                end
                              }
                              classification
                              score
                            }
                            field
                            amsClassification
                          }
                          topicMentions {
                            topic
                            mentions
                          }
                          eventKind
                          createdBy {
                            id
                            name
                            avatar
                            email
                            accountKind
                          }
                          behindPaywall
                        }
                        flags
                        riskSignals {
                          ...
                        }
                      }
                      ... on CustomBusinessPerson {
                        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