wildroco

Results 6 comments of wildroco

Any news here? I found that ArangoDB 3.5+ and java driver 6.0.0+ supports stream transaction. Is this feature not enough to support transaction of Spring data? (e.g. @Transactional) [Stream transactions](https://www.arangodb.com/docs/stable/drivers/java-reference-database-stream-transactions.html)...

@rashtao, thank you. Can you give some expected schedules? I have near production service with ArangoDB. I want to add transactions to the service before launching. The service has already...

I also faced same issue with derived query. As an workaround, I call findById with 'dummy' ID for all repositories while initializing my Spring boot Application or Service. Like below:...

any updates here? I want to sort nodes by distance from fixed location. Is it possible without distance function?

Hi, Why I have to query like this to get vertices by class? graph.V.has("@class","xxx") graph.V.hasLabel("class:xxx") not like this? (by greamlin-scala syntax) graph.V.has("xxx") Is this difference come from nature of orientDB..?...

Oh, sorry. I mean: hasLabel(string) And I found it works fine after some test. Anyway, I queried my class "A" using g. V. hasLabel("A") and it seems works below too....