19 lines
277 B
JavaScript
19 lines
277 B
JavaScript
PUT /firstindex
|
|
|
|
// create Index
|
|
|
|
|
|
POST firstindex/_doc
|
|
{
|
|
"message": "Hello_world!"
|
|
}
|
|
// Insert Into Index
|
|
|
|
|
|
DELETE firstindex
|
|
|
|
// Delete Index
|
|
|
|
|
|
// congratulations! You have written your first program!
|
|
// تبریک! شما اولین برنامه خود را نوشتید
|