Schema

Scalars

Enums

Objects

Input Objects

RootQueryType (OBJECT)

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!   # Returns the buy to let case for the given unique identifier.
caseBtl: BtlCase!   # Returns the residential case for the given unique identifier.
caseResidential: ResidentialCase!   # Returns the current case results for a specific case.
caseResults: [CaseResult!]!   # Performs the case result statistics.
caseStatistics: CaseStatistics!   # Returns a list of cases for the authenticated user.
cases: [Case!]   # Returns the current company details, requires a broker or company token.
currentCompany: Company!   # Returns the list of lenders for this environment.
lenders: [Lender!]!   # Retrieves the ONS-compliant occupation entries.
occupations: [OnsOccupation!]!   # Search cases with pagination. Searches across case UUID, client names and reference.
search: PaginatedCases! }