Query on property that may or may not exist
I have a rather complicated query that fails on a search for the property "hideInNav." I'm trying to get all pages where this is not true, but I can't figure out the operation that accomplishes this.
I've tried the following:
2_property=hideInNav
2_property.operation=like
2_property.1_value=%
2_property.2_value=false
and
2_property=hideInNav
2_property.operation=unequals
2_property.value=true
Neither returns the list of pages I'm looking for. If the hideInNav property hasn't been set, it seems that there's no ability query on it.