Skip to content

Commit 6e2e157

Browse files
authored
DOCSP-9534: [Guides] change to (#151)
1 parent 8cd3120 commit 6e2e157

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

source/cloud/atlas-search-stitch-sample-app.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
- Spin up an Atlas cluster and load the sample dataset
1919
- Create an Atlas Search index on the ``movies`` collection
2020
- Write an :manual:`aggregation pipeline </aggregation>` with
21-
the :atlas:`$searchBeta </reference/atlas-search/query-syntax>`
21+
the :atlas:`$search </reference/atlas-search/query-syntax>`
2222
operator
2323
- Create a :stitch:`Stitch </>` application to access your data
2424
- Create a web-based UI for your application

source/includes/steps-fts-sample-app.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ content: |
5555
title: Write an aggregation pipeline query. (Optional)
5656
ref: write-agg
5757
content: |
58-
Full-text search queries use the :atlas:`$searchBeta
58+
Full-text search queries use the :atlas:`$search
5959
</reference/atlas-search/query-syntax>` aggregation pipeline
6060
stage. If you'd like to learn more about constructing a full-text
6161
search query, proceed with the following steps. If you'd rather get
@@ -74,15 +74,15 @@ content: |
7474
7575
#. Select the :guilabel:`Aggregations` tab in the top navigation.
7676
77-
#. Select :guilabel:`$searchBeta` in the dropdown menu for the first
77+
#. Select :guilabel:`$search` in the dropdown menu for the first
7878
aggregation stage.
7979
8080
#. We'll use the :atlas:`search </reference/atlas-search/search/>`
8181
and :atlas:`highlight </reference/atlas-search/highlighting/>`
8282
operators to look for the search terms ``vampires and werewolves``
8383
in the ``fullplot`` field of our ``movies`` collection.
8484
85-
Enter the following text in the ``$searchBeta`` stage of your
85+
Enter the following text in the ``$search`` stage of your
8686
pipeline:
8787
8888
.. code-block:: none
@@ -192,7 +192,7 @@ content: |
192192
let arg = payload.query.arg;
193193
return collection.aggregate([
194194
{
195-
$searchBeta: {
195+
$search: {
196196
search: {
197197
query: arg,
198198
path:'fullplot',

0 commit comments

Comments
 (0)