Description: Template example
:param param => "param-value"
MATCH (n:Node {name:$param})
RETURN n.name as name
This is for Neo4j version: 3.5,4.0
Rendered guide available via: :play https://guides.neo4j.com/template/index.html
Unrendered guide: documentation/template.neo4j-browser-guide
Load graph data via the following:
Defining DBMSs:
The dbms
key is an array containing information about sample dbms installation. It has four potential keys which of targetNeo4jVersion
is required. See relate.project-install.json for reference.
-
targetNeo4jVersion
: [required] A semver formatted version number defining which version of Neo4j to use. Use the semver calculator to verify the version. -
plugins
: (optional) An array of plugin IDs. For example["apoc", "graph-data-science"]
. -
dumpFile
: (optional) Path to a local neo4j dump file or an http link that will be imported after the dbms has been created. -
scriptFile
: (optional) Path to a local cypher script or an http link that will be imported after the dbms has been created.