Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Excerpt

Hide Stock content; Not the content with Layer Stock Info applied.

Code Block
languagejson
// Complete example
{
    "kind": "NotFilter",
    "filter": {
        "kind": "TermFilter",
        "field": "layerSchemaIds",
        "term": "StockInfo"  //Layer_ID capitalized
    }
}

Basic Filter

Not the provided criteria.

Code Block
languagejson
{
    "kind": "NotFilter",
    "filter": { filter1 }
}

Properties

kind

string, required

Filter

only one

object, required (one filter)

Not the Items with Layer Corporate Information

Code Block
languagejson
// Complete example
{
    "kind": "NotFilter",
    "filter": {
		"kind": "TermFilter",
		"field": "layerSchemaIds",
		"term": "CorporateInformation"  //ID_OF_LAYER capitalized
	}
}

...