Hi
I want to filter my data by the field: "provienceID" (image bellow) in my integration
I create a rule input (number integer)
The idea is, when I change the test values in the expression, I test with 1 and the result will be all my data with the "province ID" with value 1.
I use this expression in query parameter section, but it doesn't filter by the values that I want, it gives me all the values
For example for "province ID" with value 1 must show me just 15 fields
a!query( filter: a!queryFilter( field: "provienceID", operator: "=", value: ri!provinceID ), pagingInfo: a!pagingInfo(1,-1) )
Discussion posts and replies are publicly visible
A query parameter is meant to send this parameter to the integrated API. The API needs to implement this filtering. Check the API documentation for how to pass values for filtering.
BTW, even in a queryEntity, the filtering is not done inside Appian, but offloaded to the database.