List the available filter operators
See also
Other filters:
filters
Examples
tg_operators()
#> # A tibble: 15 × 3
#> operator postgrest meaning
#> <chr> <chr> <chr>
#> 1 eq eq equals
#> 2 neq neq does not equal
#> 3 gt gt greater than
#> 4 gte gte greater than or equal to
#> 5 lt lt less than
#> 6 lte lte less than or equal to
#> 7 like like matches pattern, case sensitive
#> 8 ilike ilike matches pattern, case insensitive
#> 9 re_match match matches regular expression, case sensitive
#> 10 re_imatch imatch matches regular expression, case insensitive
#> 11 in_ in is one of
#> 12 is_null is.null is null
#> 13 is_true is.true is true
#> 14 is_false is.false is false
#> 15 not not negates another operator