• Combine Filterables with logical and to create a FilterList.

    Example

    Entity.requestBuilder()
    .getAll()
    .filter(and(filterExp1, filterExp2));

    Note that the GetAllRequestBuilderV2.filter and GetAllRequestBuilderV4.filter method take a rest parameter and thereby an array of filter expressions that are then combined conjunctively. As a consequence following is equivalent to the example above:

    Entity.requestBuilder()
    .getAll()
    .filter(filterExp1, filterExp2);

    Returns

    The newly created FilterList.

    Type Parameters

    • EntityT extends EntityBase<EntityT>

      Type of the entity filter on.

    • DeSerializersT extends DeSerializers<any, any, any, any, any, any, any, any, any, any, any, any, any, any, DeSerializersT>

    Parameters

    Returns FilterList<EntityT, DeSerializersT>

  • Type Parameters

    • EntityT extends EntityBase<EntityT>

    • DeSerializersT extends DeSerializers<any, any, any, any, any, any, any, any, any, any, any, any, any, any, DeSerializersT>

    Parameters

    Returns FilterList<EntityT, DeSerializersT>

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