Strise Connect API Docs
Queries

customBusinessPerson

Find a custom business person by their internal Strise ID.

query CustomBusinessPerson($where: CustomBusinessPersonWhereInput!) {
  customBusinessPerson(where: $where) {
    id
    birthDate
    birthYear
    beneficialOwnerships {
      reasons
      editMetadata {
        editKind
        updatedAt
        editedBy {
          id
          name
          avatar
          email
          accountKind
        }
        comment
      }
      entity {
        ... on BusinessPerson {
          id
          name
        }
        ... on Company {
          id
          name
        }
        ... on CustomBusinessPerson {
          id
          name
        }
      }
    }
    roles {
      roleTitle
      period {
        from
        to
      }
      isActive
      entity {
        ... on BusinessPerson {
          id
          name
        }
        ... on Company {
          id
          name
        }
        ... on CustomBusinessPerson {
          id
          name
        }
      }
    }
    holdings {
      shareClasses {
        shareClass
        sharePercentage {
          from
          to
        }
      }
      totalSharePercentage {
        from
        to
      }
      editMetadata {
        editKind
        updatedAt
        editedBy {
          id
          name
          avatar
          email
          accountKind
        }
        comment
      }
      entity {
        ... on BusinessPerson {
          id
          name
        }
        ... on Company {
          id
          name
        }
        ... on CustomBusinessPerson {
          id
          name
        }
      }
    }
    pepInfo {
      pep
      rca
      confirmedPepStatus
      confirmedRcaStatus
      hits {
        name
        aliases
        dateOfBirth {
          dayOfMonth
          month
          year
        }
        countries {
          code
          name
        }
        pep
        roles {
          description
          details
          startDate
          endDate
        }
        rca
        relations {
          description
          name
          birthDate
          roles {
            description
            details
            startDate
            endDate
          }
          externalUrls
        }
        custom
        externalUrls
        confirmedMatch
      }
    }
    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 CustomBusinessPerson {
                  id
                  name
                }
              }
            }
          }
        }
      }
    }
  }
}
input CustomBusinessPersonWhereInput {
  id: CustomBusinessPersonId!
}

Arguments

where CustomBusinessPersonWhereInput! non-null input

CustomBusinessPersonWhereInput!

Type

CustomBusinessPerson object

CustomBusinessPerson A resource representing a user generated custom business person.

Response Fields

id CustomBusinessPersonId! non-null scalar

CustomBusinessPersonId!

birthDate Date scalar

Date

birthYear Year scalar

Year

beneficialOwnerships [BeneficialOwner!]! non-null object

[BeneficialOwner!]! The beneficial ownerships that the person holds in companies.

ignoreEdits Boolean scalar

Boolean Whether to ignore edits made by users. If set to true, the returned beneficial ownerships will only be based on official registry data, disregarding any edits made by users.

roles [Role!]! non-null object

[Role!]! The roles that the person holds in companies.

includePrevious Boolean scalar

Boolean Whether to include previous roles, i.e., roles which have been terminated.

ignoreEdits Boolean scalar

Boolean Whether to ignore edits made by users. If set to true, the returned roles will only be based on official registry data, disregarding any edits made by users.

holdings [Ownership!]! non-null object

[Ownership!]! The person's direct holdings, i.e., companies owned by this person.

minimumSharePercentage Float scalar

Float The lower bound of the share percentage range to include in the result.

Must be greater than or equal to 0, and at most 100.

ignoreEdits Boolean scalar

Boolean Whether to ignore edits made by users. If set to true, the returned holdings will only be based on official registry data, disregarding any edits made by users.

pepInfo PepInfo! non-null object

PepInfo! PEP information.

name String! non-null scalar

String! Entity name.

addresses [Address!]! non-null object

[Address!]! The available addresses of the entity.

countries [CountryContext!]! non-null object

[CountryContext!]! The countries for the Entity.

identifiers [EntityIdentifier!]! non-null object

[EntityIdentifier!]! The official identifiers for this Entity. Since an Entity can have several ids (even within the same country), this is a list.

sanctionInfo SanctionInfo! non-null object

SanctionInfo! Sanction information related to this entity.

ams [AmsEvent!]! non-null object

[AmsEvent!]! Adverse media articles found for this entity. This field replaces the amsCount field, which will eventually be deprecated. The amsCount field might differ from the actual number returned here, due to different screening solutions being used.

pageInfo SizePageInfoInput input

SizePageInfoInput Used for pagination. Media articles are sorted by the highest relevance first.

flags [FlagKind!]! non-null enum

[FlagKind!]! Flagged events found for this entity.

riskSignals RiskSignals! non-null object

RiskSignals! Risk signals. Currently there is only one possible risk signal, 'flags', which is created if we find flags of negative severity.

On this page