You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,10 @@ the ability to search for keywords across all properties with more complex queri
23
23
|`/search?q=sentinel`| Free-text query against all properties | This will search for any matching items where `properties.*` CONTAINS `"sentinel"`|
24
24
|`/search?q="climate model"`| Free-text search using exact | This will search for any matching items where `properties.*` CONTAINS the exact phrase `"climate model"`|
25
25
|`/search?q=climate model`| Using `OR` term match (**Default**) | This will search for any matching items where `properties.*` CONTAINS `"climate"` OR `"model"`|
26
-
|`/search?q=climate+model`| Using `AND` term match | This will search for any matching items where `properties.*` CONTAINS `"climate"` AND `"model"`|
26
+
|`/search?q=climate OR model`| Using `OR` term match (**Default**) | This will search for any matching items where `properties.*` CONTAINS `"climate"` OR `"model"`|
27
+
|`/search?q=climate AND model`| Using `AND` term match | This will search for any matching items where `properties.*` CONTAINS `"climate"` AND `"model"`|
28
+
|`/search?q=(quick OR brown) AND fox`| Parentheses can be used to group terms | This will search for matching items where `properties.*` CONTAINS `"quick"` OR `"brown"` AND `"fox"`|
29
+
|`/search?q=quick +brown -fox`| Indicate included and excluded terms using `+`/`-`| This will search for items where `properties.*` INCLUDES `"brown"` EXCLUDES `"fox"` OR CONTAINS `"quick"`|
0 commit comments