Strise Connect API Docs
Queries

reviews

List reviews completed on all entities between the given dates.

query Reviews($from: DateTime!, $to: DateTime!, $pageSize: Int = 100, $offset: Int = 0) {
  reviews(from: $from, to: $to, pageSize: $pageSize, offset: $offset) {
    id
    pdf
    createdAt
    companyId
    calculatedRiskLevel
    userAssessedRiskLevel
    selfAssessment
    validUntilDate
    entityStatus
  }
}

Arguments

from DateTime! non-null scalar

DateTime! The start date of the review period.

to DateTime! non-null scalar

DateTime! The end date of the review period.

pageSize Int scalar

Int The number of items to return per page. Must be in the range [1, 100].

offset Int scalar

Int The offset of the first item to return. Use with pageSize to page through results.

Type

Review object

Review

Response Fields

id ID! non-null scalar

ID! The id of the review.

pdf Base64EncodedFile scalar

Base64EncodedFile The review as a base64 encoded PDF. The PDF is generated asynchronously, if it has not been created yet this field will be 'null'.

createdAt DateTime! non-null scalar

DateTime! The review's creation timestamp

companyId CompanyId! non-null scalar

CompanyId! The ID of the company on which the review was created.

calculatedRiskLevel RiskLevelKind enum

RiskLevelKind Calculated risk level at the time of the review. Based on team settings.

userAssessedRiskLevel RiskLevelKind enum

RiskLevelKind User-assessed risk level set during the review process.

selfAssessment String scalar

String Self assessment set during the review process.

validUntilDate DateTime scalar

DateTime Date until which the review is valid

entityStatus EntityPortfolioStatus enum

EntityPortfolioStatus The entity status at the time of the review.

On this page