beyond-the-cloud-dev / soql-lib

The SOQL Lib provides functional constructs for SOQL queries in Apex.
https://soql.beyondthecloud.dev/
MIT License
61 stars 9 forks source link

Add INCLUDES and EXCLUDES to SOQL.Filter #48

Closed pgajek2 closed 1 year ago

pgajek2 commented 1 year ago
pgajek2 commented 1 year ago

Recommendation:

includes(String values);
excludes(String values);
includesAll(Iterable<String> values); // join with ;
includesSome(Iterable<String> values); // join with ,
excludesAll(Iterable<String> values); // join with ,
excludesSome(Iterable<String> values);  // join with ;