Interface PlaceUserQueryOptions

Mapping of available query paramters for the users index

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

Hierarchy

  • PlaceResourceQueryOptions
    • PlaceUserQueryOptions

Properties

_poll?: boolean

Whether the request is a API poll request

authority_id?: string

Return only users on the given domain

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