skip to Main Content

I am new to AgensGraph and I am done with the installation in Windows. After going through the installation guide,

agens=# create graph test_graph;
CREATE GRAPH
agens=# set graph_path=test_graph;
SET
agens=# create(:test {name:’lastNotice’});
UPDATE 1
agens=# match(a:test) return a;
                a
---------------------------------
 test[3.1]{"name": "lastNotice"}
(1 row)

I got this and I am not sure how to proceed ahead with this, plus I want to integrate it with SQL as well.

I will be grateful for any sort of help.

3

Answers


  1. There is a list of some topics that you can improve your knowledge about AGE:

    Documentation

    Social Network with AGE

    UEFA App with AGE

    Login or Signup to reply.
  2. You can write your cypher query in SQL query as follows:

    SELECT * FROM cypher('<enter_graph_name_here>', $$ 
    MATCH (n) return n
     $$)
    AS (result agtype);
    

    You can take a look on Apache AGE documentation

    Also the following tutorial is a good starting point if you are new to Apache AGE.

    Getting Started with Apache AGE: Writing Your First Query for a Simple Database App

    Login or Signup to reply.
  3. What you did with that query was return nodes with label test in the graph database.

    The AGE documentation is the best reource to start learning more about the functionalities of AGE.

    The following blog post can also give you a deeper understanding:

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search