Start to show album

This commit is contained in:
2017-05-04 04:45:44 +02:00
parent 87df9af88a
commit ecc216d15d
9 changed files with 153 additions and 3 deletions

View File

@@ -0,0 +1,44 @@
POST http://localhost:9200/itunessongs/_search
content-type: application/json
User-Agent: vscode-restclient
{
"query": {
"match" : {
"Album" : {
"query": "Our Love To Admire",
"operator" : "and"
}
}
},
"size": 20
}
POST http://localhost:9200/itunessongs/_search
content-type: application/json
User-Agent: vscode-restclient
{
"query": {
"match_phrase" : {
"Album" : "Our Love"
}
},
"size": 20
}
POST http://localhost:9200/itunessongs/_search
content-type: application/json
User-Agent: vscode-restclient
{
"query": {
"bool": {
"must": [
{"match_phrase" : { "Album" : "Our Love" }},
{"match_phrase" : { "Artist" : "Caribou." }}
]
}
},
"size": 20
}