-
-
Notifications
You must be signed in to change notification settings - Fork 595
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
feat: Add support for MongoDB $search
operator
#2526
Conversation
🚀 Thanks for opening this pull request! |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## alpha #2526 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 64 64
Lines 6244 6258 +14
Branches 1468 1456 -12
=========================================
+ Hits 6244 6258 +14 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
$search
operator
$search
operator$search
operator
Signed-off-by: Manuel <[email protected]>
Signed-off-by: Diamond Lewis <[email protected]>
@dblythy I fixed the merge conflicts, can you improve code coverage? |
* | ||
*/ | ||
|
||
async search(value: string, path: string[], options?: SearchOptions): Promise<T[]> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For consistency we should rename value
to query
and it should allow for string | string[]. This should be good enough for a simple search. We can add regex, allowAnalyzedField, and score options later or now if you prefer. For more advanced searching like compound the developer would have to use query.aggregate
.
Edit: There is a empty line above that should be removed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why has this been added as a new API? I think just allowing the $search
op in the aggregation pipeline would be enough?
@mtrezza I just tried it with the aggregate pipeline and it works. I think this can be closed, no need to add new api. |
The issue objective was to add support for |
The stage check was removed parse-community/parse-server#7237 Ironically it was because somebody wanted to use |
Ha! Even in PS5 already. Are we sure there there is not further validation in the JS SDK for example? The added test looks suspicious. I would rather see a test that uses |
You opened #1989 did you test that it wasn't supported. |
That was 2 years ago, but I believe to vaguely remember that I wanted to use it and it didn't work. But maybe it was an older version of Parse Server, or maybe there has been a bug fix in the meantime, hard to tell now. I think by adding a test we can close this issue. |
If you want to do a test then it should be done on the server since there is access to the driver. This isn't an SDK issue. |
We don't know whether it's an SDK issue, until we do an integration test, right? I think it make sense to add a test in either repo, that's unfortunately the situation we're in with the JS SDK being part of Parse Server. |
I know it’s not an SDK issue because I tested it on my machine, also any aggregate pipeline gets passed to the server regardless of the stages. A good test is the error thrown if MongoDB is used without atlas search |
Just an FYI that I use mongodb atlas search myself on my own servers:
And it works great |
Then I'm not sure why this PR was opened in the first place. The issue was that $search and $searchMeta should be supported in the aggregation pipeline. Since it's already supported, the issue should simply have been closed. |
Because somebody opened a feature request for a feature that already exist and let it stay open a year and a half. Thankfully we found 2 bugs because of this PR. |
Pull Request
Issue
Closes: #1989
Approach
Adds ability to use Mongodb atlas search
Tasks