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
+7-29Lines changed: 7 additions & 29 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,35 +18,13 @@ the ability to search for keywords across all properties with more complex queri
18
18
19
19
### Examples
20
20
21
-
#### Free-text query against all properties
22
-
23
-
`/search?q=sentinel`
24
-
25
-
This will search for any matching items where `properties.*` CONTAINS `sentinel`
26
-
27
-
#### Free-text query against specific property
28
-
29
-
`/search?q=sat:orbit_state:ascending`
30
-
31
-
This will search for any matching items where `properties.sat:obit_state` CONTAINS `ascending`
32
-
33
-
#### Free-text search using exact
34
-
35
-
`/search?q=climate model`
36
-
37
-
This will search for any matching items where `properties.*` CONTAINS the exact phrase `"climate model"`
38
-
39
-
#### Free-text search using operators
40
-
41
-
By default, query strings which are made of multiple strings are searched using and `OR` relationship
42
-
43
-
`/search?q=climate model`
44
-
45
-
This will search for any matching items where `properties.*` CONTAINS `climate` OR `model`
46
-
47
-
`/search?q=climate & model`
48
-
49
-
This will search for any matching items where `properties.*` CONTAINS `climate` AND `model`
21
+
| URL Example | Summary | Detail |
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`|
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`|
0 commit comments