Creates an instance of Link.
Name of the linking field to be used in the OData request.
Entity API for building and executing the request.
Constructor of the linked entity.
Readonly
_deDummy property to include also the deserializer type in the strucutre of the entity type.
Readonly
_entityDummy property whose type makes structurally identical entities distiguishable in TypeScript.
Readonly
_entityReadonly
_fieldReadonly
_linkedList of selectables on the linked entity.
Create a new link based on a given link.
Newly created link.
Rest
...expands: Expandable<EntityType<LinkedEntityApiT>, DeSerializersT, EntityApi<EntityBase, DeSerializersT>>[]Create filter statements to be applied to the OData request based on the linked entity values.
Newly created FilterLink
.
Rest
...expressions: (Filterable<EntityType<LinkedEntityApiT>, DeSerializersT, EntityApi<EntityBase, any>> | OneToManyLink<EntityType<LinkedEntityApiT>, DeSerializersT, EntityApi<EntityBase, DeSerializersT>>)[]Filters based on the linked entity.
Add order-by statements to the request.
The request builder itself, to facilitate method chaining.
Rest
...orderBy: Orderable<EntityType<LinkedEntityApiT>, EntityApi<EntityBase, DefaultDeSerializers>>[]OrderBy statements to order the response by.
Creates a selection on a linked entity. Has the same behavior as GetAllRequestBuilderV2.select and GetByKeyRequestBuilderV4.select but for linked entities.
See also, Selectable.
The link itself, to facilitate method chaining.
Rest
...selects: Selectable<EntityType<LinkedEntityApiT>, DeSerializersT>[]Selection of fields or links on a linked entity.
Skip number of entities.
The request builder itself, to facilitate method chaining.
Number of matching entities to skip. Useful for paging.
Number of returned entities.
The request builder itself, to facilitate method chaining.
Maximum number of entities to return in the response. Can be less, if less entities match the request.
Copyright Ⓒ 2023 SAP SE or an SAP affiliate company. All rights reserved.
Represents a one to many relation for OData v4 entities. For OData v2 entities the Link is used to represent one to many relation. See Link for more information.