Interface QueryOptions

Hierarchy

Properties

datetimeFilter?: DateFilterField

Specifies field that since and until parameters (see DateFilter) are applied to

filter?: string

Optional string which filters results by a specified field, described by filterBy

filterBy?: string

Optional parameter for specifying the field on which to run the filter. To know which fields are valid fields for the particular query, consult the official API reference docs for the targeted method (eg, GetCourses), or see the client documentation for the method that overrides this interface (eg, CourseQueryOptions)

more?: string

A pagination token that was returned on the more property of paginated requests. If there are more results to be collected, the token can be provided here to get the next page of results. When passing this token, no other filter parameters can be sent as part of the request. The resources will continue to respect the filters passed in by the original request.

orderBy?: string

Optional parameter for specifying the field and order by which to sort the results. To know which fields are valid fields for the particular query, consult the official API reference docs for the targeted method. (eg, GetRegistrations), or see the client documentation for the method that overrides this interface (eg, RegistrationQueryOptions)

scope?: string

The auth scope to use for the given method invocation

since?: string

Filter by ISO 8601 TimeStamp inclusive (defaults to UTC)

tags?: string[]

Filter items matching ANY tag provided (not ALL)

until?: string

Filter by ISO 8601 TimeStamp inclusive (defaults to UTC)

Generated using TypeDoc