Versions Compared

Key

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

...

  • nextLogicOperationType указывает логическую операцию между несколькими фильтрами.
    Пример: объединение двух условий через and.
  • nextFilterLogicOperationType используется в более сложных случаях (редко).

Пример фильтра с and:


Code Block
themeConfluence
firstline1
titlejson
linenumberstrue
{
  "filter": [
    { "property": "region", "operator": "eq", "value": "Dagestan" },
    { "property": "roadType", "operator": "neq", "value": "federal" }
  ],
  "nextLogicOperationType": "and"
}

Этот фильтр отображает объекты, которые одновременно:

...