Skip to content

Commit 51217de

Browse files
author
Richard Smith
authored
Update README.md
1 parent 3af740c commit 51217de

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ the ability to search for keywords across all properties with more complex queri
2020

2121
| URL Example | Summary | Detail |
2222
| ----------- | ------- | ------ |
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"` |
2525
| `/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"`|
2828

2929
## HTTP POST
3030

0 commit comments

Comments
 (0)