StrapiRequestStrategy
Defined in: src/lib/strategies/strapi-request.strategy.ts:42
Request strategy for the Strapi driver
Generates URIs in Strapi's filter API format:
- Filters:
filters[field][$eq]=value(multi-value collapses to$in) - Operator filters:
filters[field][$op]=value(translated fromFilterOperatorEnum—BTW→$between,SW→$startsWith,ILIKE→$containsi,NOT→$ne/$notIn,NULL→$null/$notNull) - Sorts:
sort[0]=field:asc&sort[1]=field:desc - Field selection (flat):
fields[0]=col1&fields[1]=col2 - Population:
populate[0]=relation - Pagination (page-based):
pagination[page]=N&pagination[pageSize]=N
Strapi-native full-text search (FTS, PHFTS, PLFTS, WFTS) is
PostgREST-only and throws UnsupportedFilterOperatorError here.
See
https://docs.strapi.io/dev-docs/api/rest/filters-locale-publication
Extends
AbstractRequestStrategy
Constructors
Constructor
new StrapiRequestStrategy():
StrapiRequestStrategy
Returns
StrapiRequestStrategy
Inherited from
AbstractRequestStrategy.constructor
Properties
capabilities
readonlycapabilities:IStrategyCapabilities
Defined in: src/lib/strategies/strapi-request.strategy.ts:49
Filters, operator filters, sorts, populate (includes), flat field
selection (select) — no per-model fields, no global search (use
$contains / $containsi operator filters instead)
Overrides
AbstractRequestStrategy.capabilities
Methods
assertResource()
protectedassertResource(state):void
Defined in: src/lib/strategies/abstract-request.strategy.ts:89
Throw if the resource is not set on the state
Centralises the message that was previously copy-pasted across four of the five concrete strategies.
Parameters
state
The current query builder state
Returns
void
Throws
Error if state.resource is empty
Inherited from
AbstractRequestStrategy.assertResource
baseUri()
protectedbaseUri(state):string
Defined in: src/lib/strategies/abstract-request.strategy.ts:101
Compute the base path (no query string)
Parameters
state
The current query builder state
Returns
string
The base URI without the query separator (e.g. /users or https://api.example.com/users)
Inherited from
AbstractRequestStrategy.baseUri
buildUri()
buildUri(
state,options):string
Defined in: src/lib/strategies/abstract-request.strategy.ts:42
Compose the full request URI from the given state
Template method: validates the resource, computes the base path,
delegates the per-driver query-string segments to parts(...), and
joins them with the conventional ?/& separators.
Parameters
state
The current query builder state
options
QueryBuilderOptions
The query parameter key name configuration
Returns
string
The composed URI string
Throws
Error if the resource is not set
Inherited from
AbstractRequestStrategy.buildUri
join()
protectedjoin(base,segments):string
Defined in: src/lib/strategies/abstract-request.strategy.ts:115
Glue the base URI and the per-driver query-string segments
Returns the bare base when no segments were emitted (e.g. PostgREST
in RANGE mode with no filters), otherwise joins with ? + &.
Parameters
base
string
The base URI from _baseUri
segments
string[]
The query-string fragments from parts(...)
Returns
string
The full URI
Inherited from
AbstractRequestStrategy.join
parts()
protectedparts(state,_options):string[]
Defined in: src/lib/strategies/strapi-request.strategy.ts:85
Emit Strapi-format query-string segments in canonical order: populate → fields → filters (merged) → sort → pagination
Simple filters and operator filters share a single filters wrapper
so qs emits one ordered, deeply-nested bracket structure rather than
two duplicate top-level filters[...] blocks.
Parameters
state
The current query builder state
_options
QueryBuilderOptions
The query parameter key name configuration (unused; Strapi's wire keys are fixed by the server)
Returns
string[]
Ordered query-string fragments
Overrides
AbstractRequestStrategy.parts
validateLimit()
validateLimit(
limit):void
Defined in: src/lib/strategies/abstract-request.strategy.ts:59
Validate that a limit value is acceptable for this driver
Default policy: positive integer. Drivers that recognise a sentinel
(NestJS treats -1 as "fetch all") override this method.
Parameters
limit
number
The limit value to validate
Returns
void
Throws
If the value is not a positive integer
Inherited from
AbstractRequestStrategy.validateLimit