<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://neowiki.dev/w/index.php?action=history&amp;feed=atom&amp;title=Cypher</id>
	<title>Cypher - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://neowiki.dev/w/index.php?action=history&amp;feed=atom&amp;title=Cypher"/>
	<link rel="alternate" type="text/html" href="https://neowiki.dev/w/index.php?title=Cypher&amp;action=history"/>
	<updated>2026-05-02T11:25:08Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://neowiki.dev/w/index.php?title=Cypher&amp;diff=38&amp;oldid=prev</id>
		<title>NeoWiki: Importing NeoWiki demo data</title>
		<link rel="alternate" type="text/html" href="https://neowiki.dev/w/index.php?title=Cypher&amp;diff=38&amp;oldid=prev"/>
		<updated>2026-01-30T17:46:14Z</updated>

		<summary type="html">&lt;p&gt;Importing NeoWiki demo data&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;This page demonstrates the &amp;lt;code&amp;gt;cypher_raw&amp;lt;/code&amp;gt; parser function for executing Cypher queries against the Neo4j graph database.&lt;br /&gt;
&lt;br /&gt;
This is a &amp;#039;&amp;#039;&amp;#039;demo feature&amp;#039;&amp;#039;&amp;#039; for the NeoWiki proof of concept demo. It will not be present as-is in a production version.&lt;br /&gt;
&lt;br /&gt;
== Query Companies ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;cypher&amp;quot;&amp;gt;&lt;br /&gt;
MATCH (n:Company) RETURN n.name, n.id&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{#cypher_raw: MATCH (n:Company) RETURN n.name, n.id}}&lt;br /&gt;
&lt;br /&gt;
== Query Products ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;cypher&amp;quot;&amp;gt;&lt;br /&gt;
MATCH (n:Product) RETURN n.name, n.id&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{#cypher_raw: MATCH (n:Product) RETURN n.name, n.id}}&lt;br /&gt;
&lt;br /&gt;
== Query Relations ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;cypher&amp;quot;&amp;gt;&lt;br /&gt;
MATCH (source:Company)-[r]-&amp;gt;(target)&lt;br /&gt;
RETURN source.name, type(r), target.name&lt;br /&gt;
LIMIT 10&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{#cypher_raw: MATCH (source:Company)-[r]-&amp;gt;(target) RETURN source.name, type(r), target.name LIMIT 10}}&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
* Only read-only queries are allowed. Write operations like &amp;lt;code&amp;gt;CREATE&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;SET&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;DELETE&amp;lt;/code&amp;gt; are rejected.&lt;br /&gt;
* Query results are displayed as formatted JSON.&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
</feed>