The select operator filters the incoming data stream according to the given predicate.

Parameter

Example

PQL
output = SELECT({ 
                 predicate='price > 100' 
                }, input)
CQL
SELECT * FROM input WHERE price > 100