I'm using CKAN portal with API version "ckan_version": "2.2b"
When I use API to search for data modified after certain date I get 0 results.
When I search for all data packages I can see that metadata_modified property exist and should be returned by example1 query.
example1:
/api/action/package_search?q=metadata_modified:[2016-01-04T21:15:00Z%20TO%20*]
I get:
"success": true, "result": {"count": 0, "sort": "score desc, popularity desc, name asc", "facets": {}, "results": [], "search_facets": {}}}
With this example2 query:
/api/action/package_search?q=
I get:
"success": true, "result": {"count": 187, "sort": "score desc, popularity desc, ...
with metadata_modified properties that should be returned with example1 query.
I think that this issue is related to https://github.com/datagovuk/dgu-vagrant-puppet/issues/27 . Any suggestions on SOLR setup for Drupal?