Hi,
Can you share the exact exception you get and the queries you are trying to run? What Hibernate OGM backend are you using? Is this about named *JP-QL/HQL* or *SQL* queries? The former should work with Hibernate OGM to some degree (e.g. simple SELECTs), whereas the latter naturally don't work as our current backends don't support SQL as a query language.
Querying is work-in-progress in general, so it'd be valuable to know what you are after. You might also send in a pull request to enhance our experimental parser (which translates JP-QL into native NoSQL queries such as MongoDB's CLI query syntax or Neo4j's Cypher language) so it supports the things you are after. An alternative is to use Hibernate Search which will create a separate Lucene index, allowing to run queries against it and fetch result entities from the underlying NoSQL store.
Cheers,
--Gunnar
_________________ Visit my blog at http://musingsofaprogrammingaddict.blogspot.com/
|