I have Java program :
import org.neo4j.driver.v1.*;
import static org.neo4j.driver.v1.Values.parameters;
import java.util.List;
import static java.util.Arrays.asList;
import static java.util.Collections.singletonMap;
public class Main {
public static void main(String... args) {
Config isSSL =
Config.build().withEncryptionLevel(Config.EncryptionLevel.REQUIRED).toConfig();
Driver driver = GraphDatabase.driver("bolt://31.186.81.195:7473",
AuthTokens.basic("neo4j", "aiLmEtreNtraPl"), isSSL);
try (Session session = driver.session()) {
}}}
--
You received this message because you are subscribed to the Google Groups
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.