Skip to content
Snippets Groups Projects
Commit bb918335 authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

Add utility script to test ES request

parent 7a23cd1c
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
curl -XPOST "http://data.duniter.fr/market/record/_search?pretty&scroll=1m" -d'
{
"query": {
"bool":{
"should": {
"range":{
"time":{
"gte":0
}
}
},
"filter": [
{"term":{
"currency":"sou"
}
}
]
}
},
"from":0,
"size":100
}'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment