简体   繁体   中英

arangodb java driver `by-example`

Arango提供了一个http界面,可通过 /_api/simple/by-example执行搜索例如,查询示例为{ "collection" : "products", "example" : { "i" : 1 } }执行java-驱动程序提供接口?

No I do not currently see this in the java driver, I think you would have to ask for that feature.

That beeing said, this API really just constructs an AQL query with a few FILTER statements. You could easily write that yourself using java reflection.

The relevant code section would be here: https://github.com/arangodb/arangodb/blob/devel/js/server/modules/%40arangodb/simple-query.js#L107

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM