Skip to content

Add in operator to Atlas Search #1605

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Feb 4, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix doc
  • Loading branch information
joykim1005 committed Jan 15, 2025
commit 318e55a49f25ff80b8f56919883ff76b23beb0ed
Original file line number Diff line number Diff line change
Expand Up @@ -393,10 +393,10 @@ static InSearchOperator in(final FieldSearchPath path, final String value, final

/**
* Returns a {@link SearchOperator} that searches for an array of values at the given path and returns documents where the value of
* * the field equals any value in the specified array.
* the field equals any value in the specified array.
*
* @param path The indexed field to be searched.
* @param values The non-empty values to search for.
* @param values The non-empty values to search for. Value can be either a single value or an array of values of only one of the supported BSON types and can't be a mix of different types.
* @return The requested {@link SearchOperator}.
* @mongodb.atlas.manual atlas-search/in/ in operator
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ object SearchOperator {
* the field equals any value in the specified array.
*
* @param path The indexed field to be searched.
* @param values The non-empty values to search for.
* @param values The non-empty values to search for. Value can be either a single value or an array of values of only one of the supported BSON types and can't be a mix of different types.
* @return The requested `SearchOperator`.
* @see [[https://www.mongodb.com/docs/atlas/atlas-search/in/ in operator]]
*/
Expand Down