OdataRequestStrategy
Defined in: src/lib/strategies/odata-request.strategy.ts:41
Request strategy for the OData v4 driver
Generates URIs using OData's system query options:
- Filters: a single
$filter=parameter holdingand-joined terms in OData's expression language (Price gt 20 and Category eq 'Electronics') - Operator filters: translated from
FilterOperatorEnum— see the mapping on_formatOperatorTerms - Sorts:
$orderby=field asc,other desc(CSV with explicit direction) - Select:
$select=col1,col2 - Expand:
$expand=rel,other($select=col1,col2)— plain relations come fromaddIncludes, column-projected ones fromaddEmbedded - Search:
$search=term(OData v4 free-text search) - Pagination:
$top=N&$skip=M(skip derived from state.page) plus a constant$count=trueso responses carry the@odata.counttotal the response strategy needs
The $-prefixed parameter names are fixed by the OData specification
and intentionally not configurable through QueryBuilderOptions; they
live as private statics so they are visible in one place. String
literals are single-quoted with embedded quotes doubled ('O''Brien')
per the OData ABNF; numbers and booleans are emitted bare.
PostgREST-native full-text search operators (FTS, PHFTS, PLFTS,
WFTS) throw UnsupportedFilterOperatorError — use $search or the
CONTAINS / ILIKE operator filters instead.
See
- https://www.odata.org/
- https://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part2-url-conventions.html
Extends
AbstractRequestStrategy
Constructors
Constructor
new OdataRequestStrategy():
OdataRequestStrategy
Returns
OdataRequestStrategy
Inherited from
AbstractRequestStrategy.constructor
Properties
capabilities
readonlycapabilities:IStrategyCapabilities
Defined in: src/lib/strategies/odata-request.strategy.ts:48
Filters, operator filters, sorts, flat select, includes and embedded
(both folding into $expand), global search — no per-model fields
(OData has no JSON:API-style fields[type] projection)
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
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/odata-request.strategy.ts:84
Emit OData-format query-string segments in canonical order: $filter → $orderby → $select → $expand → $search → $count → $top → $skip
Parameters
state
The current query builder state
_options
The query parameter key name configuration (unused — every OData system query option name is fixed by the specification)
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