Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. "chods": {
  2. "mappings": {
  3. "chod": {
  4. "properties": {
  5. "state": {
  6. "type": "text"
  7. }
  8. }
  9. },
  10. "chods": {},
  11. "variant": {
  12. "_parent": {
  13. "type": "chod"
  14. },
  15. "_routing": {
  16. "required": true
  17. },
  18. "properties": {
  19. "percentage": {
  20. "type": "double"
  21. }
  22. }
  23. }
  24. }
  25. },
  26.  
  27. PUT /chods/variant/565?parent=36442
  28. { // some data }
  29.  
  30. {
  31. "_index":"chods",
  32. "_type":"variant",
  33. "_id":"565",
  34. "_version":6,
  35. "result":"updated",
  36. "_shards":{
  37. "total":2,
  38. "successful":1,
  39. "failed":0
  40. },
  41. "created":false
  42. }
  43.  
  44. GET /chods/variant/565?parent=36442
  45.  
  46. {
  47. "_index": "chods",
  48. "_type": "variant",
  49. "_id": "565",
  50. "_version": 7,
  51. "_routing": "36443",
  52. "_parent": "36443",
  53. "found": true,
  54. "_source": {
  55. ...
  56. }
  57. }
  58.  
  59. GET /chods/_search
  60. {
  61. "query": {
  62. "parent_id": {
  63. "type": "variant",
  64. "id": "36442"
  65. }
  66. }
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement