From 0e6eb4f06641fe950910408bd64bc569666b595f Mon Sep 17 00:00:00 2001 From: kageru Date: Tue, 18 Apr 2023 09:46:04 +0200 Subject: [PATCH] document or filter syntax --- static/help.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/static/help.html b/static/help.html index ac952f4..5128e5d 100644 --- a/static/help.html +++ b/static/help.html @@ -30,6 +30,8 @@ The following search operators are supported:
  • Inequality (!=) checks if the value is not equal to your search. For text fields, this return cards that do not contain the word you searched.
  • Comparisons (<, >, <=, >=) check if the value is less than, greater than, less than or equal, and greater than or equal to your search. atk>=4000 will show all cards with an ATK of at least 4000. These operators do not work for text fields.
  • +
    +It is possible to filter for multiple values at once, e.g. level:3|6|9 to find all cards that are level 3, 6, or 9.

    Examples