Created
June 13, 2019 20:40
-
-
Save daliborgogic/767b96374afa59625d73389ea764d3da to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const query = { | |
bool: { | |
should: [ | |
{ | |
query_string: { | |
query: value, | |
type: 'cross_fields', | |
minimum_should_match: '100%', | |
analyze_wildcard: true, | |
fields: [ | |
'Vrvirksomhed.virksomhedMetadata.nyesteBeliggenhedsadresse.vejnavn', | |
'Vrvirksomhed.virksomhedMetadata.nyesteBeliggenhedsadresse.husnummerFra', | |
'Vrvirksomhed.virksomhedMetadata.nyesteBeliggenhedsadresse.husnummerTil', | |
] | |
} | |
} | |
], | |
must: [ | |
{ | |
query_string: { | |
query: value, | |
type: 'best_fields', | |
analyze_wildcard: true, | |
fields: [ | |
'Vrvirksomhed.virksomhedMetadata.nyesteNavn.navn', | |
'VrproduktionsEnhed.navne.navn', | |
'Vrdeltagerperson.navne.navn', | |
] | |
} | |
} | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment