Strise Connect API Docs
Queries

reviewTriggerSearch

Find all review trigger events delivered within a given timeframe.

query ReviewTriggerSearch($where: ReviewTriggerEventWhereInput!, $pageInfo: SizePageInfoInput) {
  reviewTriggerSearch(where: $where, pageInfo: $pageInfo) {
    totalCount
    edges {
      node {
        ... on CompanyReviewTriggerEvent {
          company
          relations {
            edges {
              kind
              explanation
              custom
              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 {
                    signals {
                      name
                      riskFactors {
                        name
                        dateTime
                        paths {
                          edges {
                            kinds
                            node {
                              ...
                            }
                          }
                        }
                      }
                    }
                  }
                }
                ... on CustomBusinessPerson {
                  id
                  name
                }
              }
              details {
                ... on OwnershipRelationDetails {
                  share
                }
              }
            }
          }
          id
          triggeredAt
          statements
        }
        ... on PersonReviewTriggerEvent {
          person
          id
          triggeredAt
          statements
        }
      }
    }
  }
}
input ReviewTriggerEventWhereInput {
  from: DateTime
  to: DateTime
}

input SizePageInfoInput {
  size: Int!
  offset: Int = 0
}

Arguments

where ReviewTriggerEventWhereInput! non-null input

ReviewTriggerEventWhereInput!

pageInfo SizePageInfoInput input

SizePageInfoInput

Type

ReviewTriggerEventSearchConnection object

ReviewTriggerEventSearchConnection

Response Fields

totalCount Int! non-null scalar

Int!

edges [ReviewTriggerEventSearchConnectionEdge!]! non-null object

[ReviewTriggerEventSearchConnectionEdge!]!

On this page