Skip to content
This repository has been archived by the owner on Feb 28, 2024. It is now read-only.

Add query boosting to give more weight to title, author then text #78

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions parijat-frontend/src/routes/search/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ export default class Search extends Component {
autofocus
searchOnChange
queryFields={[
'title',
'author',
'text',
'title^3',
'author^2',
'text^1',
'text.latin',
'title.latin',
'author.latin'
Expand Down