Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. 'aggs': {
  2. 'total': {
  3. 'sum': {
  4. 'field': 'amount'
  5. }
  6. }
  7. }
  8.  
  9. 'amount': {
  10. 'type': 'double',
  11. 'index': 'not_analyzed',
  12. 'store': False
  13. },
  14.  
  15. {
  16. 'took': 3,
  17. 'aggregations': {'total': {'value': 21.0}},
  18. 'hits': {'total': 1, 'max_score': 0.51623213,
  19. 'hits': [
  20. {
  21. '_score': 0.51623213,
  22. '_index': 'crowdspire',
  23. '_type': 'donation',
  24. '_source': {
  25. 'amount': 21.28,
  26. 'created_on': '2019-06-15T01:37:42.451249+00:00'
  27. }
  28. }
  29. ]},
  30. 'timed_out': False,
  31. '_shards': {'total': 5, 'successful': 5, 'skipped': 0, 'failed': 0}
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement