From 31616b76dc9d0bb38804c45f40c82b728a07fd71 Mon Sep 17 00:00:00 2001 From: Paul Bob <69730720+Paul-Bob@users.noreply.github.com> Date: Fri, 13 Dec 2024 11:41:47 +0200 Subject: [PATCH] add default conditions hash for dynamic filters (#324) --- docs/3.0/dynamic-filters.md | 89 ++++++++++++++++++++++++++++++++----- 1 file changed, 79 insertions(+), 10 deletions(-) diff --git a/docs/3.0/dynamic-filters.md b/docs/3.0/dynamic-filters.md index f94d7b41..e33f742e 100644 --- a/docs/3.0/dynamic-filters.md +++ b/docs/3.0/dynamic-filters.md @@ -69,9 +69,19 @@ For instance, in the text filter example above, the `Contains` condition and the - Is false - Is null - Is not null + +```ruby +{ + is_true: "Is true", + is_false: "Is false", + is_null: "Is null", + is_not_null: "Is not null", +}.invert +``` +