From 9589b6a40e1a4a38594424fbc67c6485e6f289e8 Mon Sep 17 00:00:00 2001 From: Liam Thompson Date: Fri, 25 Oct 2024 16:43:30 +0200 Subject: [PATCH] Update result text --- .../full-text-filtering-tutorial.asciidoc | 70 +++++++++---------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/docs/reference/quickstart/full-text-filtering-tutorial.asciidoc b/docs/reference/quickstart/full-text-filtering-tutorial.asciidoc index 1c1a21e1b1a1..e21333cfa567 100644 --- a/docs/reference/quickstart/full-text-filtering-tutorial.asciidoc +++ b/docs/reference/quickstart/full-text-filtering-tutorial.asciidoc @@ -168,41 +168,41 @@ At search time, {es} defaults to the analyzer defined in the field mapping. In t [source,console-result] ---- { - "took": 2, - "timed_out": false, - "_shards": { - "total": 5, - "successful": 5, - "skipped": 0, - "failed": 0 - }, - "hits": { <1> - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": 0.39556286, <2> - "hits": [ - { - "_index": "cooking_blog", - "_id": "1", - "_score": 0.39556286, <3> - "_source": { - "title": "Perfect Pancakes: A Fluffy Breakfast Delight", <4> - "description": "Learn the secrets to making the fluffiest pancakes you've ever tasted. This recipe uses buttermilk and a special folding technique to create light, airy pancakes that are perfect for lazy Sunday mornings.", <5> - "author": "Maria Rodriguez", - "date": "2023-05-01", - "category": "Breakfast", - "tags": [ - "pancakes", - "breakfast", - "easy recipes" - ], - "rating": 4.8 - } - } - ] - } + "took": 2, + "timed_out": false, + "_shards": { + "total": 5, + "successful": 5, + "skipped": 0, + "failed": 0 + }, + "hits": { <1> + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": 0.39556286, <2> + "hits": [ + { + "_index": "cooking_blog", + "_id": "1", + "_score": 0.39556286, <3> + "_source": { + "title": "Perfect Pancakes: A Fluffy Breakfast Delight", <4> + "description": "Learn the secrets to making the fluffiest pancakes, so amazing you won't believe your tastebuds. This recipe uses buttermilk and a special folding technique to create light, airy pancakes that are perfect for lazy Sunday mornings.", <5> + "author": "Maria Rodriguez", + "date": "2023-05-01", + "category": "Breakfast", + "tags": [ + "pancakes", + "breakfast", + "easy recipes" + ], + "rating": 4.8 + } + } + ] + } } ---- // TESTRESPONSE[s/"total": 5/"total": $body._shards.total/]