Skip to content
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

Search for term in multiple fields #86

Open
mebibou opened this issue Jul 26, 2018 · 0 comments
Open

Search for term in multiple fields #86

mebibou opened this issue Jul 26, 2018 · 0 comments

Comments

@mebibou
Copy link

mebibou commented Jul 26, 2018

If I have the following docs:

{
  title: "document 1",
  body: "sample 1"
},
{
  title: "document 2",
  body: "document 2"
}

And I want to search for title=doc AND body=doc, how can I do this? I tried:

index.search("doc", {
  fields: {
    title: {boost: 1},
    body: {boost: 1}
  },
  bool: "AND"
});

but it returns both documents

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant