LoanFilter
Ways in which to filter lists of loans.
input LoanFilter {
createdAfter: DateTime
createdBefore: DateTime
licenseId: ID
statuses: [LoanStatus!]
updatedAfter: DateTime
updatedBefore: DateTime
}
Fields
LoanFilter.createdAfter ● DateTime scalar
Only return loans created after the specified timestamp.
LoanFilter.createdBefore ● DateTime scalar
Only return loans created after the specified timestamp.
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.
Member of
loans query