Strise Connect API Docs
Mutations

reviewCompanyCreate

No description

mutation ReviewCompanyCreate($where: CompanyWhereInput!) {
  reviewCompanyCreate(where: $where) {
    success
    risk
    id
    context {
      triggerId
      relation {
        edges {
          kind
          explanation
          custom
          node {
            ... on BusinessPerson {
              id
              name
            }
            ... on Company {
              id
              name
            }
            ... on CustomBusinessPerson {
              id
              name
            }
          }
          details {
            ... on OwnershipRelationDetails {
              share
            }
          }
        }
      }
      explanations
      entity {
        ... on Company {
          id
          name
        }
        ... on BusinessPerson {
          id
          name
        }
        ... on CustomBusinessPerson {
          id
          name
        }
        ... on PrivatePerson {
          id
          name
        }
      }
    }
  }
}
input CompanyWhereInput {
  id: CompanyId!
}

Arguments

where CompanyWhereInput! non-null input

CompanyWhereInput!

Type

ReviewPayload object

ReviewPayload

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