Schema

Scalars

Enums

Objects

Input Objects

RootQueryType (OBJECT)

Queries exist for returning data about lenders, cases and case results.

Schema Definition

type RootQueryType {   # Returns the list of active lenders for this environment.
activeLenders: [Lender!]!   # Returns the respective case by the UUID and current token.
case: Case! caseBtl: BtlCase! caseResidential: ResidentialCase!   # Returns current case results for a specific case. Requires an MBT uuid for a case.
caseResults: [CaseResult!]! caseStatistics: CaseStatistics!   # Returns a list of cases for the current token.
cases: [Case!]   # Returns the current company details, requires a broker or company token.
currentCompany: Company!   # Retrieves the ONS-compliant occupation entries.
occupations: [OnsOccupation!]!   # Returns current sourcing products for a specific case. Requires an MBT uuid for a case.
sourcingProducts: [SourcingProduct]! }