Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "query":{
- "filtered":{
- "filter":{
- "bool":{
- "must":[
- {
- "nested":{
- "path":"work.publication",
- "query":{
- "bool":{
- "must":[
- {
- "terms":{
- "work.publication.format":[
- "Book"
- ]
- }
- },
- {
- "terms":{
- "work.publication.language":[
- "Norwegian"
- ]
- }
- }
- ]
- }
- }
- }
- }
- ]
- }
- },
- "query":{
- "bool":{
- "should":[
- {
- "multi_match":{
- "query":"USER_INPUT",
- "fields":[
- "work.mainTitle^2",
- "work.partTitle"
- ]
- }
- }
- ]
- }
- }
- }
- },
- "size":10,
- "aggregations":{
- "all":{
- "global":{
- },
- "aggregations":{
- "work.publication.format":{
- "filter":{
- "and":[
- {
- "bool":{
- "should":[
- {
- "multi_match":{
- "query":"USER_INPUT",
- "fields":[
- "work.mainTitle^2",
- "work.partTitle"
- ]
- }
- }
- ]
- }
- },
- {
- "bool":{
- "must":{
- "nested":{
- "path":"work.publication",
- "query":{
- "bool":{
- "must":[
- {
- "terms":{
- "work.publication.language":[
- "Norwegian"
- ]
- }
- }
- ]
- }
- }
- }
- }
- }
- }
- ]
- },
- "aggregations":{
- "work.publication.format":{
- "nested":{
- "path":"work.publication"
- },
- "aggregations":{
- "work.publication.format":{
- "terms":{
- "field":"work.publication.format"
- }
- }
- }
- }
- }
- },
- "work.publication.language":{
- "filter":{
- "and":[
- {
- "bool":{
- "should":[
- {
- "multi_match":{
- "query":"USER_INPUT",
- "fields":[
- "work.mainTitle^2",
- "work.partTitle"
- ]
- }
- }
- ]
- }
- },
- {
- "bool":{
- "must":{
- "nested":{
- "path":"work.publication",
- "query":{
- "bool":{
- "must":[
- {
- "terms":{
- "work.publication.format":[
- "Book"
- ]
- }
- }
- ]
- }
- }
- }
- }
- }
- }
- ]
- },
- "aggregations":{
- "work.publication.language":{
- "nested":{
- "path":"work.publication"
- },
- "aggregations":{
- "work.publication.language":{
- "terms":{
- "field":"work.publication.language"
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement