Interface SignagePluginQueryOptions

Allowable query parameters for signage plugins index endpoint

interface SignagePluginQueryOptions {
    _poll?: boolean;
    cache?: number;
    fields?: string;
    limit?: number;
    offset?: number;
    q?: string;
    ref?: string;
}

Hierarchy (View Summary)

Properties

_poll?: boolean

Whether the request is a API poll request

cache?: number

Number of milliseconds to cache the query response

fields?: string

Ignored by the server since PlaceOS moved search to PostgreSQL (PPT-2644)

limit?: number

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

offset?: number

Offset of the results to return. Max 1000000

q?: string

Free-text search filter. Words match as prefixes against the resource's searchable fields (PostgreSQL full-text search); all words must match.

ref?: string

Ignored by the server; pagination follows the Link header's offset