As I understand it, Version 4 now has encryption off by default, and the version 1.7 drives have encryption on by default. So the HelloWorldExample is now broken.
How do I set encryption = false in my code when creating the driver instance
Thx
As I understand it, Version 4 now has encryption off by default, and the version 1.7 drives have encryption on by default. So the HelloWorldExample is now broken.
How do I set encryption = false in my code when creating the driver instance
Thx
Solved
_Driver = GraphDatabase.Driver(uri, AuthTokens.Basic(user, password), Config.Builder.WithEncryptionLevel(EncryptionLevel.None).ToConfig());