-
Notifications
You must be signed in to change notification settings - Fork 0
Elasticsearch cheatsheet owly
AppliNH edited this page Nov 2, 2020
·
1 revision
Works in the context of the owly project.
Method : GET
URL : localhost:9200/<chatroomId>/_search?size=10000
Method : GET
URL : localhost:9200/<chatroomId>/_doc/<messageId>
Method : DELETE
URL : localhost:9200/<chatroomId>/_doc/<messageId>
Method : POST
URL : localhost:9200/<chatroomId>/_doc/<messageId>/_update
Payload:
{
"doc": {
"content":"bibi"
}
}