Start to show album
This commit is contained in:
44
dashboard/requestAlbum.txt
Normal file
44
dashboard/requestAlbum.txt
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user