Run Atlas Search Queries
On this page
- View Query Guidance Template
- In Atlas, go to the Clusters page for your project.
- Go to the Atlas Search page for your cluster.
- View the query guidance template.
- Run Atlas Search Queries in the Search Tester
- Prerequisites
- Search Your Collection
- View, Edit, or Copy Query Syntax
- Run Atlas Search Queries in Compass, Drivers and
mongosh
You can run Atlas Search queries in the Search Tester, Compass, Drivers and
mongosh
. Atlas Search also provides query guidance in the Atlas UI.
Tip
Quickly try Atlas Search without needing an Atlas account, cluster, or collection, with the Atlas Search Playground. To learn more, see the documentation.
View Query Guidance Template
Atlas Search provides a sample compound query template with guidance. The template demonstrates how to build a compound query and the index definition for that query. For an example tutorial, see How to Run Atlas Search Compound Queries with Weighted Fields.
To view this query guidance template:
In Atlas, go to the Clusters page for your project.
If it is not already displayed, select the organization that contains your desired project from the Organizations menu in the navigation bar.
If it is not already displayed, select your desired project from the Projects menu in the navigation bar.
If the Clusters page is not already displayed, click Database in the sidebar.
Go to the Atlas Search page for your cluster.
You can go the Atlas Search page from the sidebar, the Data Explorer, or your cluster details page.
In the sidebar, click Atlas Search under the Services heading.
From the Select data source dropdown, select your cluster and click Go to Atlas Search.
Click the Browse Collections button for your cluster.
Expand the database and select the collection.
Click the Search Indexes tab for the collection.
Click the cluster's name.
Click the Atlas Search tab.
Run Atlas Search Queries in the Search Tester
The Search Tester feature in the Atlas Search tab allows you to:
Enter the term to search in the collection.
Run a
$search
or$searchMeta
query. By default, the Search Tester shows a basic wildcard query.View, edit, and copy your Atlas Search query syntax, which you can then run in
mongosh
or MongoDB Compass.Tip
Atlas Search also provides templates for popular search queries that you can adapt.
For $search
queries, the Search Tester returns
the top 10 documents sorted based on relevance score. For $searchMeta
queries, the
Search Tester shows one meta document.
Prerequisites
To use the Search Tester in the Atlas UI, you must have the following:
An Atlas cluster running MongoDB version 4.2 or higher.
Atlas Search index on your collection in the Atlas cluster.
Search Your Collection
In Atlas, go to the Clusters page for your project.
If it is not already displayed, select the organization that contains your desired project from the Organizations menu in the navigation bar.
If it is not already displayed, select your desired project from the Projects menu in the navigation bar.
If the Clusters page is not already displayed, click Database in the sidebar.
Go to the Atlas Search page for your cluster.
You can go the Atlas Search page from the sidebar, the Data Explorer, or your cluster details page.
In the sidebar, click Atlas Search under the Services heading.
From the Select data source dropdown, select your cluster and click Go to Atlas Search.
Click the Browse Collections button for your cluster.
Expand the database and select the collection.
Click the Search Indexes tab for the collection.
Click the cluster's name.
Click the Atlas Search tab.
On the index you'd like to query, click the Query button on the righthand side of the card.
View, Edit, or Copy Query Syntax
Click Edit Query to view your query syntax in JSON format.
Optionally, create a query from an existing template.
Atlas Search provides templates for popular search queries. To use a template:
Click Create Query From Template. Atlas Search displays a list of popular search types.
For a given search type, select a template from the Template drop-down menu.
Click Insert for the template that you want to add.
Edit or copy your query syntax.
You can edit or copy the query syntax in JSON format.
Edit Query Syntax
You can modify or replace the displayed query in the Query Editor and test your query by clicking the Search button.
Important
When you finish editing your query, be sure to copy it. Once you click Exit Query Editor, the Atlas UI discards your changes.
Copy Query Syntax
Click to copy the query syntax in JSON format to your clipboard. You can run the copied query in
mongosh
or MongoDB Compass after connecting to your Atlas cluster.
Run Atlas Search Queries in Compass, Drivers and mongosh
To run a Atlas Search query, you must have the following:
An Atlas cluster running MongoDB version 4.2 or higher.
Atlas Search index on your collection in the Atlas cluster.
A connection to the client you want to use to run the query.
The Step 2: Run Atlas Search Queries page demonstrates how to connect to
your Atlas cluster and run $search
queries against the
sample_mflix.movies
collection using the following clients. To learn
more, select a client using the Select your language drop-down menu
on the Step 2: Run Atlas Search Queries page.
Client | Steps |
---|---|
MongoDB Compass |
To learn more, see Aggregation Pipeline Builder. |
Drivers |
To learn more about running
|
MongoDB Shell |
To learn more about running |