Mutations
companyCreditReportOrder
Order a credit report for a company.
mutation CompanyCreditReportOrder($where: CompanyWhereInput!) {
companyCreditReportOrder(where: $where) {
success
company {
id
name
}
creditScore {
reportDate
creditLimit
creditRating
rating
ratingDescription
hasPaymentRemarks
remarks {
count
totalAmount
}
partiallySettledRemarks {
count
totalAmount
}
voluntaryCollateral {
count
totalAmount
}
currencyCode
scoreUnavailableReason
}
}
}input CompanyWhereInput {
id: CompanyId!
}Arguments
where CompanyWhereInput! non-null input
Type
CreditReportPayload object
CreditReportPayload
The payload for ordering a credit report.
Response Fields
success Boolean! non-null scalar
Boolean!
Whether the credit report was successfully ordered.
company Company object
Company
The company for which the credit report was ordered.
creditScore CreditScore object
CreditScore
The credit score data.