GET _search
{
"query": {
"match_all": {}
}
}
GET /accounts/persion/_search?q=weir
GET accounts/persion/_search
{
"query": {
"term": {
"name": {
"value": "weir"
}
}
}
}
POST /accounts/persion/1
{
"name": "weir",
"lastname": "wyt",
"job_description": "Systems administrator and Linux specialit"
}
GET /accounts/persion/1
DELETE /account/persion/1
POST /accounts/persion/1/_update
{
"doc": {
"job_description": "Systems administrator and Linux specialist"
}
}
image.png
网友评论