SAP Cloud SDK for JavaScript - v4.1.1
    Preparing search index...

    Interface WithGetAllRestrictions<EntityT, DeSerializersT>

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

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

    Type Parameters

    Hierarchy (View Summary)

    Implemented by

    Index

    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 Ⓒ 2025 SAP SE or an SAP affiliate company. All rights reserved.