From 51217de8f38af5c4df7e0f15af98bb15add980f9 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Fri, 6 Aug 2021 11:44:41 +0100 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 65fd5d8..4c6e43e 100644 --- a/README.md +++ b/README.md @@ -20,11 +20,11 @@ the ability to search for keywords across all properties with more complex queri | URL Example | Summary | Detail | | ----------- | ------- | ------ | -| `/search?q=sentinel` | Free-text query against all properties | This will search for any matching items where `properties.*` CONTAINS `sentinel` | -| `/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` | +| `/search?q=sentinel` | Free-text query against all properties | This will search for any matching items where `properties.*` CONTAINS `"sentinel"` | +| `/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"` | | `/search?q="climate model"` | Free-text search using exact | This will search for any matching items where `properties.*` CONTAINS the exact phrase `"climate model"` | -|`/search?q=climate model`| Using `OR` term match (**Default**) | This will search for any matching items where `properties.*` CONTAINS `climate` OR `model`| -|`/search?q=climate+model`| Using `AND` term match | This will search for any matching items where `properties.*` CONTAINS `climate` AND `model`| +|`/search?q=climate model`| Using `OR` term match (**Default**) | This will search for any matching items where `properties.*` CONTAINS `"climate"` OR `"model"`| +|`/search?q=climate+model`| Using `AND` term match | This will search for any matching items where `properties.*` CONTAINS `"climate"` AND `"model"`| ## HTTP POST