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-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,11 +20,11 @@ the ability to search for keywords across all properties with more complex queri
20
20
21
21
| URL Example | Summary | Detail |
22
22
| ----------- | ------- | ------ |
23
-
|`/search?q=sentinel`| Free-text query against all properties | This will search for any matching items where `properties.*` CONTAINS `sentinel`|
24
-
|`/search?q=sat:orbit_state:ascending`| Free-text query against specific property | This will search for any matching items where `properties.sat:obit_state` CONTAINS `ascending`|
23
+
|`/search?q=sentinel`| Free-text query against all properties | This will search for any matching items where `properties.*` CONTAINS `"sentinel"`|
24
+
|`/search?q=sat:orbit_state:ascending`| Free-text query against specific property | This will search for any matching items where `properties.sat:obit_state` CONTAINS `"ascending"`|
25
25
|`/search?q="climate model"`| Free-text search using exact | This will search for any matching items where `properties.*` CONTAINS the exact phrase `"climate model"`|
26
-
|`/search?q=climate model`| Using `OR` term match (**Default**) | This will search for any matching items where `properties.*` CONTAINS `climate` OR `model`|
27
-
|`/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 model`| Using `OR` term match (**Default**) | This will search for any matching items where `properties.*` CONTAINS `"climate"` OR `"model"`|
27
+
|`/search?q=climate+model`| Using `AND` term match | This will search for any matching items where `properties.*` CONTAINS `"climate"` AND `"model"`|
0 commit comments