Interface PlaceAuthSourceQueryOptions

Mapping of available query paramters for the modules index

interface PlaceAuthSourceQueryOptions {
    _poll?: boolean;
    authority?: string;
    authority_id?: string;
    cache?: number;
    fields?: string;
    limit?: number;
    offset?: number;
    q?: string;
}

Hierarchy

  • PlaceResourceQueryOptions
    • PlaceAuthSourceQueryOptions

Properties

_poll?: boolean

Whether the request is a API poll request

authority?: string

ID of the authority to filter the auth sources

authority_id?: string

ID of the authority to filter the auth sources

cache?: number

Number of milliseconds to cache the query response

fields?: string

Comma seperated list of fields to apply the query to

limit?: number

Number of results to return. Defaults to 20. Max 500

offset?: number

Offsets of the results to return. Max 10000

q?: string