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
@@ -312,11 +312,11 @@ You can start searching as soon as the first document is loaded.
312
312
313
313
1. Add the `$select` query parameter to limit the results to fewer fields: `https://[service name].search.windows.net/indexes/clinical-trials-json-index/docs?search=*&$select=Gender,metadata_storage_size&api-version=2019-05-06&$count=true`. For this query, 100 documents match, but by default, Azure Cognitive Search only returns 50 in the results.
1. An example of more complex query would include `$filter=MinimumAge ge 30 and MaximumAge lt 75`, which returns only results where the parameters MinimumAge is greater than or equal to 30 and MaximumAge is less than 75. Replace the `$select` expression with the `$filter` expression.
You can also use Logical operators (and, or, not) and comparison operators (eq, ne, gt, lt, ge, le). String comparisons are case-sensitive. For more information and examples, see [Create a simple query](search-query-simple-examples.md).
322
322
@@ -343,7 +343,7 @@ You can find and manage resources in the portal, using the All resources or Reso
343
343
344
344
## Next steps
345
345
346
-
Now that you're familiar with the basics of Azure Blob indexing, let's take a closer look at indexer configuration.
346
+
Now that you're familiar with the basics of Azure Blob indexing, let's take a closer look at indexer configuration for JSON blobs in Azure Storage.
347
347
348
348
> [!div class="nextstepaction"]
349
-
> [Configure an Azure Blob storage indexer](search-howto-indexing-azure-blob-storage.md)
0 commit comments