Skip to content

Instantly share code, notes, and snippets.

@monken
Created October 26, 2011 08:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save monken/1315785 to your computer and use it in GitHub Desktop.
Save monken/1315785 to your computer and use it in GitHub Desktop.
# doesn't work
curl -XGET api.metacpan.org/v0/release/_search -d '{
"query" : {
"nested" : {
"filter" : {
"term" : {
"depedency.module" : "Moose"
}
},
"path" : "dependency"
}
},"size":1
}
'
# works
curl api.metacpan.org/v0/release/_search -d '
{
"query" : {
"nested" : {
"filter" : {
"term" : {
"dependency.module" : "DateTime"
}
},
"path" : "dependency"
}
},
"size" : 1
}
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment