Interface WithGetAllRestrictions<EntityT, DeSerializersT>

Interface representing options on a getAll request like top or orderBy.

interface WithGetAllRestrictions<EntityT, DeSerializersT> {
    filter: Filterable<EntityT, DeSerializersT>;
    orderBy: Orderable<EntityT, EntityApi<EntityBase, DefaultDeSerializers>>[];
    selects: Selectable<EntityT, DeSerializersT>[];
    skip: number;
    top: number;
}

Type Parameters

Hierarchy (view full)

Implemented by

Properties

Filter the results based on conditions.

Order the results in, e.g., asc or desc order.

Select a list of fields on the schema property of the entity api.

skip: number

Skip a number of results in the requested set.

top: number

Limit the number of results to the given number.

Copyright Ⓒ 2024 SAP SE or an SAP affiliate company. All rights reserved.