mirror of https://github.com/bpb27/tta-elastic
21 lines
646 B
JavaScript
21 lines
646 B
JavaScript
import { wrapper } from './utils.js';
|
|
|
|
const name = 'healthcare';
|
|
|
|
const search =
|
|
'health* | prescription* | obamacare | premiums | deductibles | medicare | medicaid | \\"pre-existing\\"';
|
|
|
|
const body = wrapper(builder =>
|
|
builder
|
|
.orFilter('wildcard', 'text', 'health*')
|
|
.orFilter('wildcard', 'text', 'prescription*')
|
|
.orFilter('match', 'text', 'obamacare')
|
|
.orFilter('match', 'text', 'premiums')
|
|
.orFilter('match', 'text', 'deductibles')
|
|
.orFilter('match', 'text', 'medicare')
|
|
.orFilter('match', 'text', 'medicaid')
|
|
.orFilter('match_phrase', 'text', 'pre-existing')
|
|
);
|
|
|
|
export default { body, name, search };
|