Michael Hunger

Results 538 comments of Michael Hunger

Is that just support via SSL? https://neo4j.com/docs/go-manual/current/client-applications/#go-driver-connection-uris

If you check out @michael-simons project neo4j-migrations it’s modeled after flyway. neo4j.com/labs/neo4j-migrations

@ncordon We should probably discuss this with Luisa. Since 4.x this breaking change in neo4j is a big source of problems, as transaction state from nodes that are not rebound...

We probably also need to provide some migration path, if apoc currently uses teh system db and the setting is changed, then it should move the information to the current...

With Embedded: https://github.com/michael-simons/neo4j-sdn-ogm-tips/blob/master/examples/testing-ogm-against-embedded-with-apoc/src/test/java/org/neo4j/tips/testing/testing_ogm_against_embedded_with_apoc/ApplicationTests.java#L53-L67 ``` examples/testing-ogm-against-embedded-with-apoc/src/test/java/org/neo4j/tips/testing/testing_ogm_against_embedded_with_apoc/ApplicationTests.java:53-67 // We need the directory containing the APOC jar, otherwise all APOC procedures must be loaded manually. // While the intuitive idea might be not...

The reason for originally leaving it out in the parser was that the default signature output doesn't put quotes around strings, which made it too hard to parse for me.

I tried it myself, if you run `apoc.export.json.all()` e.g. on sandbox it hangs forever. but if you use `apoc.export.json.query("MATCH (n) RETURN n", ...)` it works. Looks like a bug.

Just tried it again and it works for me from cypher-shell in plain mode, for browser it will return too much data to the browser. This is on the recommendations...

Yep, sorry it's a bug, it tries to bind the node again to make it available which is of course not possible as the tx is already closed and the...