<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Prince Verma</title>
    <description>The latest articles on Forem by Prince Verma (@prince585).</description>
    <link>https://forem.com/prince585</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3494525%2Fdb263209-1bdf-47a4-9ad5-fe6705c5083c.jpeg</url>
      <title>Forem: Prince Verma</title>
      <link>https://forem.com/prince585</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/prince585"/>
    <language>en</language>
    <item>
      <title>How I Passed the Neo4j Certified Professional Exam and Built a Simple Graph</title>
      <dc:creator>Prince Verma</dc:creator>
      <pubDate>Thu, 11 Sep 2025 09:27:34 +0000</pubDate>
      <link>https://forem.com/prince585/how-i-passed-the-neo4j-certified-professional-exam-and-built-a-simple-graph-28o9</link>
      <guid>https://forem.com/prince585/how-i-passed-the-neo4j-certified-professional-exam-and-built-a-simple-graph-28o9</guid>
      <description>&lt;p&gt;I recently earned the &lt;strong&gt;Neo4j Certified Professional&lt;/strong&gt; credential, and I want to share a quick demo that highlights what I learned while preparing for the exam.&lt;/p&gt;




&lt;h2&gt;
  
  
  Modeling a Simple Social Graph
&lt;/h2&gt;

&lt;p&gt;Graphs are about nodes and relationships. I created a small example to show how Neo4j makes this powerful.&lt;/p&gt;

&lt;h3&gt;
  
  
  Create sample data
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
cypher
CREATE (a:Person {name:'Alice'}),
       (b:Person {name:'Bob'}),
       (c:Person {name:'Carol'}),
       (i:Interest {name:'Graph Databases'}),
       (a)-[:FRIEND_WITH]-&amp;gt;(b),
       (b)-[:FRIEND_WITH]-&amp;gt;(c),
       (a)-[:INTERESTED_IN]-&amp;gt;(i);

![ ](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/dxxnx5qg1nmiuerw3q5g.png)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>neo4j</category>
      <category>database</category>
      <category>cypher</category>
      <category>graphql</category>
    </item>
  </channel>
</rss>
