Tim Frietas
My feedback
-
3 votes
Tim Frietas shared this idea ·
-
520 votes
Tim Frietas supported this idea ·
-
2 votes
Tim Frietas supported this idea ·
Tim Frietas shared this idea ·
-
1 vote
Tim Frietas shared this idea ·
-
1 vote
Tim Frietas shared this idea ·
-
1 vote
Tim Frietas supported this idea ·
-
23 votes
Tim Frietas supported this idea ·
-
1 vote
Tim Frietas shared this idea ·
-
49 votes
The work on performing a search over multiple collections started a while ago and we will update you here when it is released.
An error occurred while saving the comment Tim Frietas shared this idea ·
-
3 votes
Tim Frietas shared this idea ·
-
4 votes
Tim Frietas shared this idea ·
-
1 vote
Tim Frietas shared this idea ·
-
27 votes
Tim Frietas shared this idea ·
-
1 vote
Tim Frietas shared this idea ·
-
34 votes
We have started this work. Please stay tuned for an announcement about its completion.
Tim Frietas shared this idea ·
-
2 votes
Tim Frietas shared this idea ·
-
1 vote
Tim Frietas shared this idea ·
-
2 votes
Tim Frietas shared this idea ·
-
3 votes
Tim Frietas shared this idea ·
-
2 votes
Tim Frietas shared this idea ·
i want to use searchBeta operator on dbref objects attribute how i can give instructions to analyzer to access fields from reference object and do indexing
For example, assuming the following two collections:
Collection1
{
_id: ObjectId("5d636ff2259c5a0b3c83d2f1"),
name: "This",
something: "Else",
emp: ObjectId("5d639e2af8e23f1fb0921032")
}
Collection2
{
_id: ObjectId("5d639e2af8e23f1fb0921032"),
name: "ABC"
salary: 1000
}
I want to be able to run a query like the following:
db.Collection1.aggregate([
{
$searchBeta: {
"term": {
"query": "ABC",
"path": "emp.name"
}
}
}
])