Comparison filters:
([attribute-name] < [literal])
([attribute-name] > [literal])
([attribute-name] <= [literal])
([attribute-name] = [literal])
([attribute-name] <> [literal])
Between filter:
([literal] < [attribute-name] < [literal])
Like Filters:
[attribute-name] LIKE [literal] (attribute has to be a string type)
Logic Filters:
(Filter1 AND Filter2)
(Filter1 OR Filter2)
NOT Filter
It is possible to combine several filters by using the logic filters.
Example 6.1. Attribute Filter
"((((ID > -1324484000)) AND (NAME LIKE '*w?g')) OR (ID < -1324484000)) "