-
Notifications
You must be signed in to change notification settings - Fork 1
Search parameters
Jonas Kohl edited this page Apr 7, 2023
·
1 revision
The search field provides advanced expressions for filtering your games more precisely. The general form for these expression is as follows:
{[Column name][Operator][Value]}
The following operators are available:
| Operator | Description |
|---|---|
*= |
Contains |
== |
Equals |
#= |
Exactly equals |
^= |
Starts with |
$= |
Ends with |
>: |
Greater than |
>= |
Greater than or equal to |
<: |
Less than |
<= |
Less than or equal to |
Example: To search for games from the publisher "Nintendo" with the "PAL" region which are newer than 2009, you could use the following query:
{Publisher==Nintendo} {Region==PAL} {Release date>:2009}