Skip to content

Instantly share code, notes, and snippets.

@ifnazar
Last active June 23, 2019 14:32
Show Gist options
  • Save ifnazar/91f80736fcc898b12362ff4d881d0207 to your computer and use it in GitHub Desktop.
Save ifnazar/91f80736fcc898b12362ff4d881d0207 to your computer and use it in GitHub Desktop.
LIferay - Search - Kibana
GET _search
{
"size": 100,
"query": {
"bool": {
"must": [
{
"match_all": {}
}
],
"filter": {
"term": {
"entryClassName": "com.liferay.wiki.model.WikiNode"
}
}
}
}
}
GET /_search
{
"query": {
"bool": {
"should": [
{ "match": { "entryClassName": "com.liferay.blade.samples.guestbook.model.Guestbook" }}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment