-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtemplate.neo4j-browser-guide
57 lines (36 loc) · 1.18 KB
/
template.neo4j-browser-guide
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
= Browser Guide
== Browser Guide
Some introductory text
== Create
To the right is a code block containing Cypher import statements.
* Click on the code block
* Notice it gets copied to the editor above ↑
* Click the editor's play button to execute
* Wait for the query to finish
WARNING: This adds data to the current database, each time it is run!
---
pass:[:help <a help-topic="cypher">cypher</a> <a help-topic="create">CREATE</a>]
[source,cypher]
----
// some import script or not
----
== Find
Example queries for finding individual nodes.
* Click on any query example
* Run the query from the editor
* Notice the syntax pattern
* Try looking for other movies or actors
---
:pass[<small>:help</small> <a help-topic="match">MATCH</a> <a help-topic="where">WHERE</a> <a help-topic="return">RETURN</a>]
.Find ....
[source,cypher]
----
MATCH (node:Node {name: "A Node"}) RETURN node
----
== Next steps
=== More code
* :pass[<a play-topic="guide-name">Another Example</a> - text]
* :pass[<a play-topic="cypher">Cypher</a> - query language fundamentals]
=== Reference
* https://neo4j.com/developer/[Developer Guides^]
* https://neo4j.com/docs/cypher-manual[Neo4j Cypher Manual^]