File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ content: |
5555title : Write an aggregation pipeline query. (Optional)
5656ref : write-agg
5757content : |
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',
You can’t perform that action at this time.
0 commit comments