Created
November 19, 2019 20:32
-
-
Save sohangp/7a53fd0bc425ba20b7b8556ff3513553 to your computer and use it in GitHub Desktop.
Delete
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ curl -X GET http://localhost:9200/student/student/1?pretty=true | |
{ | |
"_index" : "student", | |
"_type" : "student", | |
"_id" : "1", | |
"_version" : 33, | |
"_seq_no" : 32, | |
"_primary_term" : 1, | |
"found" : true, | |
"_source" : { | |
"id" : 1, | |
"name" : null, | |
"address" : null, | |
"email" : null | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment