Type of the entity filter on.
Filterables to be combined with logical and
.
The newly created FilterList.
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);
Copyright Ⓒ 2024 SAP SE or an SAP affiliate company. All rights reserved.
Rest
...expressions: Filterable<EntityT, DeSerializersT, EntityApi<EntityBase, any>>[]
Combine Filterables with logical
and
to create a FilterList.