Andrew Jefferson

Results 20 comments of Andrew Jefferson

If we're magically doing configuration we should also consider the following settings: `dbms.connector.bolt.tls_level` -> should we switch this to REQUIRED `dbms.connector.http.enabled` -> should we disable this if https is available

Hi @darshanmehta10 I have a draft article on how to do tls with neo4j 4.0 docker containers that might help you. I can't guarantee that it will but here is...

any pointers on how this can be improved? I'm happy to look at making a PR

Hi @NAJ10 that is very interesting. Could you provide the command that you used to create the "neo4j" helm repo ? I don't think it's particularly relevant but I just...

I get similar results - using neo4j desktop on OS X

:+1: sounds like a good thing to raise with the kernel team

ah just seen this. It's because the output is being done using off the shelf json formatter and that is more correct json behaviour `json::stringify(properties_gram_ready)`

I'm seeing this problem as well. I had to revert to 1.1.0

@conker84 are you sure it's not that the cypher export function should be escaping the U+0085 character in some way ? It seems like it's a valid 'new line' expression...

for example to pipe the cypher shell output of apoc.export.cypher back in to cypher shell I need this: `sed 's/^":/:/' | sed 's/^"$/:/' | sed 's/\\"/"/g' | sed 's/^:$//' |...