LoadReferenceOrFailOptions <T, P, F, E>
Hierarchy
- FindOneOrFailOptions<T, P, F, E>
- LoadReferenceOrFailOptions
Index
Properties
- after
- before
- cache
- comments
- connectionType
- convertCustomTypes
- ctx
- dataloader
- disableIdentityMap
- exclude
- failHandler
- fields
- filters
- first
- flags
- flushMode
- groupBy
- having
- hintComments
- indexHint
- last
- lockMode
- lockTableAliases
- lockVersion
- loggerContext
- logging
- offset
- orderBy
- overfetch
- populate
- populateFilter
- populateOrderBy
- populateWhere
- refresh
- schema
- strategy
- strict
Properties
optionalinheritedafter
optionalinheritedbefore
Fetch items before
this cursor.
optionalinheritedcache
Control result caching for this query. Result cache is by default disabled, not to be confused with the identity map.
optionalinheritedcomments
sql only
optionalinheritedconnectionType
optionalinheritedconvertCustomTypes
optionalinheritedctx
optionaldataloader
optionalinheriteddisableIdentityMap
optionalinheritedexclude
optionalinheritedfailHandler
Type declaration
Parameters
entityName: string
where: any
Returns Error
optionalinheritedfields
optionalinheritedfilters
optionalinheritedfirst
Fetch first
N items.
optionalinheritedflags
optionalinheritedflushMode
optionalinheritedgroupBy
sql only
optionalinheritedhaving
optionalinheritedhintComments
sql only
optionalinheritedindexHint
sql only
optionalinheritedlast
Fetch last
N items.
optionalinheritedlockMode
optionalinheritedlockTableAliases
sql only
optionalinheritedlockVersion
optionalinheritedloggerContext
optionalinheritedlogging
optionalinheritedoffset
Sets the offset. If you try to use limit/offset on a query that joins a to-many relation, pagination mechanism will be triggered, resulting in a subquery condition, to apply this limit only to the root entities instead of the cartesian product you get from a database in this case.
optionalinheritedorderBy
Ordering of the results.Can be an object or array of objects, keys are property names, values are ordering (asc/desc)
optionalinheritedoverfetch
Fetch one more item than first
/last
, enabled automatically in em.findByCursor
to check if there is a next page.
optionalinheritedpopulate
optionalinheritedpopulateFilter
Filter condition for populated relations. This is similar to populateWhere
, but will produce a left join
when nesting the condition. This is used for implementation of joined filters.
optionalinheritedpopulateOrderBy
Used for ordering of the populate queries. If not specified, the value of options.orderBy
is used.
optionalinheritedpopulateWhere
Where condition for populated relations. This will have no effect on the root entity.
With select-in
strategy, this is applied only to the populate queries.
With joined
strategy, those are applied as join on
conditions.
When you use a nested condition on a to-many relation, it will produce a nested inner join,
discarding the collection items based on the child condition.
optionalinheritedrefresh
optionalinheritedschema
optionalinheritedstrategy
sql only
Fetch items
after
this cursor.