Versions Compared

Key

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

...

Code Block
{
	"term": "txt_sysemail_systo:irina@qs.optimal-systems.de OR txt_sysemail_syscc:irina@qs.optimal-systems.de",
	"options": 
	{
		"expertmode": true           
	}
}

Example: Searching with "not equal this value" in fields of type string, number, and date

Instead of the operator "eq" use "notneq" to find all objects not containing the value "freelancer" in a string field. Wildcards are supported.

Code Block
"filters": {
  "employee.class-string": {
     "o": "notneq",         // operator for range
     "v1": "freelancer"       // none stands for no content (document file)
  }
}

Example: Searching with "notinnot in" for catalog fields

Instead of the operator "in" use "notinnin" to find all objects not containing the value "freelancer" in a catalog field. Wildcards are supported.

Code Block
"filters": {
  "employee.class-catalog": {
     "o": "notinnin",         // operator for range
     "v1": "freelancer"       // none stands for no content (document file)
  }
}

...