Strise Connect API Docs
Mutations

reviewPrivatePersonCreate

No description

mutation ReviewPrivatePersonCreate($where: PrivatePersonWhereInput!) {
  reviewPrivatePersonCreate(where: $where) {
    success
    risk
    id
    context {
      triggerId
      relation {
        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
            }
          }
        }
      }
      explanations
      entity {
        ... on Company {
          id
          name
        }
        ... on BusinessPerson {
          id
          name
        }
        ... on CustomBusinessPerson {
          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 PrivatePersonWhereInput {
  id: PrivatePersonId!
}

Arguments

where PrivatePersonWhereInput! non-null input

PrivatePersonWhereInput!

Type

PrivatePersonReviewPayload object

PrivatePersonReviewPayload

Response Fields

success Boolean! non-null scalar

Boolean!

risk RiskClass! non-null enum

RiskClass!

id ID scalar

ID Has a value only when the review is automatically completed, which is dependent on configured risk class settings.

context ReviewContext object

ReviewContext

On this page