Neo4j Connection

The Neo4j connection type provides connection to a Neo4j database.

Configuring the Connection

Host (required)

The host to connect to.

Schema (optional)

Specify the schema name to be used in the database.

Login (required)

Specify the user name to connect.

Password (required)

Specify the password to connect.

Extra (optional)

Specify the extra parameters (as json dictionary) that can be used in Neo4j connection.

The following extras are supported:

  • Default - uses bolt scheme(bolt://)

  • neo4j_scheme - neo4j://

  • certs_self_signed - neo4j+ssc://

  • certs_trusted_ca - neo4j+s://

  • encrypted: Sets encrypted=True/False for GraphDatabase.driver, Set to True for Neo4j Aura.

  • neo4j_scheme: Specifies the scheme to neo4j://, default is bolt://

  • certs_self_signed: Sets the URI scheme to support self-signed certificates(neo4j+ssc://)

  • certs_trusted_ca: Sets the URI scheme to support only trusted CA(neo4j+s://)

Example "extras" field:

{
   "encrypted": true,
   "neo4j_scheme": true,
   "certs_self_signed": true,
   "certs_trusted_ca": false
}

Was this entry helpful?