Hi,
Is it possible to enter multiple conditions in a LDAP reader filter??
The user guide says “attribute=value pairs as a filtering condition for the search.”
So how do I enter more than one pair? What is the correct syntax?
For example, for testing purposes I only want to read a small subset of records from the LDAP.
Can I filter like this:
objectClass=user
sn=“Wilson”
How about something like this:
objectClass=user
employeeID >= 123456
employeeID <= 123477
Do I use semicolon to separate pairs? Or is it more like:
attr1=val1 && (attr2>=val2 || attr3<=val3)
Thanks