Search in MongoDB with multiple field using $or
up vote
0
down vote
favorite
I have student data in MongoDB and I am using mongoose as orm.
I want to search all the students with the search param matching any of the student fields.
query = {
find: {
$or: [
{ 'first_name': '/' + req.body.search_text + '/' },
{ 'last_name': '/' + req.body.search_text + '/' },
{ 'email': '/' + req.body.search_text + '/' },
{ 'city': '/' + req.body.search_text + '/' },
]
}
}
But it's not working as expected.
regex mongodb mongoose
add a comment |
up vote
0
down vote
favorite
I have student data in MongoDB and I am using mongoose as orm.
I want to search all the students with the search param matching any of the student fields.
query = {
find: {
$or: [
{ 'first_name': '/' + req.body.search_text + '/' },
{ 'last_name': '/' + req.body.search_text + '/' },
{ 'email': '/' + req.body.search_text + '/' },
{ 'city': '/' + req.body.search_text + '/' },
]
}
}
But it's not working as expected.
regex mongodb mongoose
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have student data in MongoDB and I am using mongoose as orm.
I want to search all the students with the search param matching any of the student fields.
query = {
find: {
$or: [
{ 'first_name': '/' + req.body.search_text + '/' },
{ 'last_name': '/' + req.body.search_text + '/' },
{ 'email': '/' + req.body.search_text + '/' },
{ 'city': '/' + req.body.search_text + '/' },
]
}
}
But it's not working as expected.
regex mongodb mongoose
I have student data in MongoDB and I am using mongoose as orm.
I want to search all the students with the search param matching any of the student fields.
query = {
find: {
$or: [
{ 'first_name': '/' + req.body.search_text + '/' },
{ 'last_name': '/' + req.body.search_text + '/' },
{ 'email': '/' + req.body.search_text + '/' },
{ 'city': '/' + req.body.search_text + '/' },
]
}
}
But it's not working as expected.
regex mongodb mongoose
regex mongodb mongoose
edited Nov 21 at 16:40
D.Rosado
3,98012647
3,98012647
asked Nov 21 at 14:48
Rhushikesh
1,52562762
1,52562762
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
You need to check your regex correctly:
Below is the query which will find:
- Any field contains a value.
- Case insensitive
Simple Query:
db.getCollection('test').find({
$or: [
{ email: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ first_name: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ last_name: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ city: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} }
]
})
Aggregation:
db.getCollection('test').aggregate([{
$match:{
$or: [
{ email: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ first_name: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ last_name: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ city: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} }
]
}
}])
Check out: https://mongoplayground.net/p/zE9k_32RQiY
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
You need to check your regex correctly:
Below is the query which will find:
- Any field contains a value.
- Case insensitive
Simple Query:
db.getCollection('test').find({
$or: [
{ email: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ first_name: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ last_name: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ city: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} }
]
})
Aggregation:
db.getCollection('test').aggregate([{
$match:{
$or: [
{ email: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ first_name: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ last_name: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ city: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} }
]
}
}])
Check out: https://mongoplayground.net/p/zE9k_32RQiY
add a comment |
up vote
1
down vote
accepted
You need to check your regex correctly:
Below is the query which will find:
- Any field contains a value.
- Case insensitive
Simple Query:
db.getCollection('test').find({
$or: [
{ email: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ first_name: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ last_name: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ city: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} }
]
})
Aggregation:
db.getCollection('test').aggregate([{
$match:{
$or: [
{ email: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ first_name: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ last_name: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ city: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} }
]
}
}])
Check out: https://mongoplayground.net/p/zE9k_32RQiY
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
You need to check your regex correctly:
Below is the query which will find:
- Any field contains a value.
- Case insensitive
Simple Query:
db.getCollection('test').find({
$or: [
{ email: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ first_name: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ last_name: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ city: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} }
]
})
Aggregation:
db.getCollection('test').aggregate([{
$match:{
$or: [
{ email: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ first_name: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ last_name: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ city: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} }
]
}
}])
Check out: https://mongoplayground.net/p/zE9k_32RQiY
You need to check your regex correctly:
Below is the query which will find:
- Any field contains a value.
- Case insensitive
Simple Query:
db.getCollection('test').find({
$or: [
{ email: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ first_name: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ last_name: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ city: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} }
]
})
Aggregation:
db.getCollection('test').aggregate([{
$match:{
$or: [
{ email: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ first_name: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ last_name: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} },
{ city: {'$regex': ".*"+ req.body.search_text +".*", $options:'i'} }
]
}
}])
Check out: https://mongoplayground.net/p/zE9k_32RQiY
edited Nov 21 at 16:18
answered Nov 21 at 16:13
Hardik Shah
1,6382723
1,6382723
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53414627%2fsearch-in-mongodb-with-multiple-field-using-or%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown