Query for a field value that is a sub string of the search valueHow does MongoDB $text search works?How to query MongoDB with “like”?Update MongoDB field using value of another fieldQuery for documents where array size is greater than 1Checking if a field contains a stringWhat is the “__v” field in MongooseFind MongoDB records where array field is not emptyMongoose query where value is not nullStop Mongoose from creating _id property for sub-document array itemsFind document with array that contains a specific valuesearch a sub-field on mongoDB
Drawing lines to nearest point
What to do if SUS scores contradict qualitative feedback?
As programers say: Strive to be lazy
How do I compare the result of "1d20+x, with advantage" to "1d20+y, without advantage", assuming x < y?
Does kinetic energy warp spacetime?
What is Plautus’s pun about frustum and frustrum?
Exception propagation: When should I catch exceptions?
What are the components of a legend (in the sense of a tale, not a figure legend)?
For the erase-remove idiom, why is the second parameter necessary which points to the end of the container?
Word for being out at night during curfew
How to select certain lines (n, n+4, n+8, n+12...) from the file?
Make all the squares explode
Extrude the faces of a cube symmetrically along XYZ
Extracting sublists that contain similar elements
Why does getw return -1 when trying to read a character?
Why doesn't Rocket Lab use a solid stage?
How can a Lich look like a human without magic?
Who was this character from the Tomb of Annihilation adventure before they became a monster?
How does noise-cancellation work in Mac laptops?
Is there a spell to protect inanimate objects?
How can Thor be worthy?
What's special about a Bunsen burner?
"Right on the tip of my tongue" meaning?
Why not just directly invest in the holdings of an ETF?
Query for a field value that is a sub string of the search value
How does MongoDB $text search works?How to query MongoDB with “like”?Update MongoDB field using value of another fieldQuery for documents where array size is greater than 1Checking if a field contains a stringWhat is the “__v” field in MongooseFind MongoDB records where array field is not emptyMongoose query where value is not nullStop Mongoose from creating _id property for sub-document array itemsFind document with array that contains a specific valuesearch a sub-field on mongoDB
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
If I have the following documents,
`
db.articles.insert(
[
_id: 1, subject: "coffee", author: "xyz", views: 50 ,
_id: 2, subject: "Coffee Shopping", author: "efg", views: 5 ,
_id: 3, subject: "Baking a cake", author: "abc", views: 90 ,
_id: 4, subject: "baking", author: "xyz", views: 100 ,
_id: 5, subject: "Café Con Leche", author: "abc", views: 200 ,
_id: 6, subject: "Сырники", author: "jkl", views: 80 ,
_id: 7, subject: "coffee and cream", author: "efg", views: 10 ,
_id: 8, subject: "Cafe con Leche", author: "xyz", views: 10
]
)
`
How does one display the following result
`
_id: 3, subject: "Baking a cake", author: "abc", views: 90
`
someone searches for the term cakemaster
?
I have tried the following,
`
const regex = new RegExp(escapeRegex(req.query.search), 'gi');
db.articles.createIndex( subject: "text" )
db.articles.find($text:$search: "cakes")
`
But it doesn't work.
mongodb mongoose
|
show 3 more comments
If I have the following documents,
`
db.articles.insert(
[
_id: 1, subject: "coffee", author: "xyz", views: 50 ,
_id: 2, subject: "Coffee Shopping", author: "efg", views: 5 ,
_id: 3, subject: "Baking a cake", author: "abc", views: 90 ,
_id: 4, subject: "baking", author: "xyz", views: 100 ,
_id: 5, subject: "Café Con Leche", author: "abc", views: 200 ,
_id: 6, subject: "Сырники", author: "jkl", views: 80 ,
_id: 7, subject: "coffee and cream", author: "efg", views: 10 ,
_id: 8, subject: "Cafe con Leche", author: "xyz", views: 10
]
)
`
How does one display the following result
`
_id: 3, subject: "Baking a cake", author: "abc", views: 90
`
someone searches for the term cakemaster
?
I have tried the following,
`
const regex = new RegExp(escapeRegex(req.query.search), 'gi');
db.articles.createIndex( subject: "text" )
db.articles.find($text:$search: "cakes")
`
But it doesn't work.
mongodb mongoose
Have you created "text" index onsubject
field?
– Anthony Winzlet
Mar 23 at 12:08
Will edit the post, but yes I have
– tomoshimi
Mar 23 at 12:10
For me the above code is working fine
– Anthony Winzlet
Mar 23 at 12:16
sorry, I had the term wrong, instead of 'cakes' I wanted 'cakemaster'. Edited the post as well
– tomoshimi
Mar 23 at 12:17
stackoverflow.com/questions/53652282/…
– Anthony Winzlet
Mar 23 at 12:20
|
show 3 more comments
If I have the following documents,
`
db.articles.insert(
[
_id: 1, subject: "coffee", author: "xyz", views: 50 ,
_id: 2, subject: "Coffee Shopping", author: "efg", views: 5 ,
_id: 3, subject: "Baking a cake", author: "abc", views: 90 ,
_id: 4, subject: "baking", author: "xyz", views: 100 ,
_id: 5, subject: "Café Con Leche", author: "abc", views: 200 ,
_id: 6, subject: "Сырники", author: "jkl", views: 80 ,
_id: 7, subject: "coffee and cream", author: "efg", views: 10 ,
_id: 8, subject: "Cafe con Leche", author: "xyz", views: 10
]
)
`
How does one display the following result
`
_id: 3, subject: "Baking a cake", author: "abc", views: 90
`
someone searches for the term cakemaster
?
I have tried the following,
`
const regex = new RegExp(escapeRegex(req.query.search), 'gi');
db.articles.createIndex( subject: "text" )
db.articles.find($text:$search: "cakes")
`
But it doesn't work.
mongodb mongoose
If I have the following documents,
`
db.articles.insert(
[
_id: 1, subject: "coffee", author: "xyz", views: 50 ,
_id: 2, subject: "Coffee Shopping", author: "efg", views: 5 ,
_id: 3, subject: "Baking a cake", author: "abc", views: 90 ,
_id: 4, subject: "baking", author: "xyz", views: 100 ,
_id: 5, subject: "Café Con Leche", author: "abc", views: 200 ,
_id: 6, subject: "Сырники", author: "jkl", views: 80 ,
_id: 7, subject: "coffee and cream", author: "efg", views: 10 ,
_id: 8, subject: "Cafe con Leche", author: "xyz", views: 10
]
)
`
How does one display the following result
`
_id: 3, subject: "Baking a cake", author: "abc", views: 90
`
someone searches for the term cakemaster
?
I have tried the following,
`
const regex = new RegExp(escapeRegex(req.query.search), 'gi');
db.articles.createIndex( subject: "text" )
db.articles.find($text:$search: "cakes")
`
But it doesn't work.
mongodb mongoose
mongodb mongoose
edited Mar 23 at 12:17
tomoshimi
asked Mar 23 at 12:05
tomoshimitomoshimi
84
84
Have you created "text" index onsubject
field?
– Anthony Winzlet
Mar 23 at 12:08
Will edit the post, but yes I have
– tomoshimi
Mar 23 at 12:10
For me the above code is working fine
– Anthony Winzlet
Mar 23 at 12:16
sorry, I had the term wrong, instead of 'cakes' I wanted 'cakemaster'. Edited the post as well
– tomoshimi
Mar 23 at 12:17
stackoverflow.com/questions/53652282/…
– Anthony Winzlet
Mar 23 at 12:20
|
show 3 more comments
Have you created "text" index onsubject
field?
– Anthony Winzlet
Mar 23 at 12:08
Will edit the post, but yes I have
– tomoshimi
Mar 23 at 12:10
For me the above code is working fine
– Anthony Winzlet
Mar 23 at 12:16
sorry, I had the term wrong, instead of 'cakes' I wanted 'cakemaster'. Edited the post as well
– tomoshimi
Mar 23 at 12:17
stackoverflow.com/questions/53652282/…
– Anthony Winzlet
Mar 23 at 12:20
Have you created "text" index on
subject
field?– Anthony Winzlet
Mar 23 at 12:08
Have you created "text" index on
subject
field?– Anthony Winzlet
Mar 23 at 12:08
Will edit the post, but yes I have
– tomoshimi
Mar 23 at 12:10
Will edit the post, but yes I have
– tomoshimi
Mar 23 at 12:10
For me the above code is working fine
– Anthony Winzlet
Mar 23 at 12:16
For me the above code is working fine
– Anthony Winzlet
Mar 23 at 12:16
sorry, I had the term wrong, instead of 'cakes' I wanted 'cakemaster'. Edited the post as well
– tomoshimi
Mar 23 at 12:17
sorry, I had the term wrong, instead of 'cakes' I wanted 'cakemaster'. Edited the post as well
– tomoshimi
Mar 23 at 12:17
stackoverflow.com/questions/53652282/…
– Anthony Winzlet
Mar 23 at 12:20
stackoverflow.com/questions/53652282/…
– Anthony Winzlet
Mar 23 at 12:20
|
show 3 more comments
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
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%2f55313553%2fquery-for-a-field-value-that-is-a-sub-string-of-the-search-value%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
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%2f55313553%2fquery-for-a-field-value-that-is-a-sub-string-of-the-search-value%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
Have you created "text" index on
subject
field?– Anthony Winzlet
Mar 23 at 12:08
Will edit the post, but yes I have
– tomoshimi
Mar 23 at 12:10
For me the above code is working fine
– Anthony Winzlet
Mar 23 at 12:16
sorry, I had the term wrong, instead of 'cakes' I wanted 'cakemaster'. Edited the post as well
– tomoshimi
Mar 23 at 12:17
stackoverflow.com/questions/53652282/…
– Anthony Winzlet
Mar 23 at 12:20