Skip to content

Instantly share code, notes, and snippets.

@oalders
Created June 2, 2011 13:26
Show Gist options
  • Select an option

  • Save oalders/1004418 to your computer and use it in GitHub Desktop.

Select an option

Save oalders/1004418 to your computer and use it in GitHub Desktop.
curl -XGET 'http://api.beta.metacpan.org:80/v0/file/_search?scroll=5m&pretty=1' -d '
{
"fields" : [
"abstract",
"documentation",
"distribution"
],
"filter" : {
"and" : [
{
"exists" : {
"field" : "file.documentation"
}
},
{
"term" : {
"file.status" : "latest"
}
},
{
"prefix" : {
"file.documentation" : "DBIx::"
}
}
]
},
"query" : {
"match_all" : {}
},
"explain" : 0,
"size" : 10
}
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment