FilterPropertyType

FilterPropertyType

Filters based on property type

Constructor

new FilterPropertyType()

Source:
Examples
//Filter all where property "myProperty" is not of type "string" or "number"
{
    "property": "myProperty",
    "propertyType": ["number", "string"]
}
//Filter all where property "myProperty" is not of type "concept" or "concept[]"
{
    "property": "myProperty",
    "propertyType": ["array[concept]", "concept"]
}