Skip to main content

LoanFilter

Ways in which to filter lists of loans.

input LoanFilter {
licenseId: ID
statuses: [LoanStatus!]
updatedAfter: DateTime
updatedBefore: DateTime
createdAfter: DateTime
createdBefore: DateTime
}

Fields

LoanFilter.licenseId ● ID scalar

Only return loans for a specific license. Should be a full URI.

LoanFilter.statuses ● [LoanStatus!] list enum

Only return loans with one of the specific statuses.

LoanFilter.updatedAfter ● DateTime scalar

Only return loans updated after the specified timestamp.

LoanFilter.updatedBefore ● DateTime scalar

Only return loans updated before the specified timestamp.

LoanFilter.createdAfter ● DateTime scalar

Only return loans created after the specified timestamp.

LoanFilter.createdBefore ● DateTime scalar

Only return loans created after the specified timestamp.

Member of

loans query