From 90a40e97fa52356ff357af044af0620ce1d15323 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20B=C3=B6sch-Plepelits?= Date: Thu, 5 Sep 2019 11:11:03 +0200 Subject: [PATCH] Documentation: fix filters --- doc/Filters.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/Filters.md b/doc/Filters.md index 36dba5b9..c7e75ee5 100644 --- a/doc/Filters.md +++ b/doc/Filters.md @@ -28,11 +28,12 @@ Each filter can define the following values: * key: If not overridden by query, use this key for searching. If not defined, use the filter's ID. Can also be an array with a list of keys. You can use wildcards too, e.g. "name:*" to query all localized name tags. * op: operator to use (if not overridden by query): * '=' exact match (default) - * '!=' any value nut this + * '!=' any value but this * '~' regular expression, case sensitive * '~i' regular expression, case insensitive * '!~', '!~i' regular expression, negated * 'has' query in semicolon-separated lists like `cuisine=kebap;noodles` + * 'has_key_value' query object with a tag with this key * 'strsearch' query string parts (e.g. "kai keb" would match "Kaiser Kebap") and query character variants (e.g. "cafe" would match "café"). * show_default: if true, this filter will be shown by default, others need to be added via the select box.