Page 1 of 1

parameter query for non-empty

Posted: Fri Aug 18, 2017 1:16 pm
by brittonclair
I have a parametric field that is defined as a SET. How can I make a query to include only pages where that field is not empty (without regard for what the specific values are)?

parameter query for non-empty

Posted: Fri Aug 18, 2017 3:47 pm
by jason112
Like other parametric fields types like "String", you can use infield without an operator to look for where the field is nonempty.

So if you wanted to search for "chandelier" where the parametric field "style" is nonempty, your query would be

chandelier infield:style

parameter query for non-empty

Posted: Fri Aug 18, 2017 3:48 pm
by jason112
For anyone curious, the "infield operators" documentation has details on this and the other operators available:

https://docs.thunderstone.com/site/psap ... ators.html

parameter query for non-empty

Posted: Fri Aug 18, 2017 4:04 pm
by brittonclair
Thank you!