MironAtHome commented on issue #1931:
URL: https://github.com/apache/age/issues/1931#issuecomment-2242376042

   This worked for me:
   
   ```
   select create_vlabel('test_graph', 'vertex1');
   select create_vlabel('test_graph', 'customer');
   select *
   from cypher('test_graph', $$
        CREATE (v:customer
        {id:351, properties:{path:"/root/custA"
                               , `cust-name`: "DDDDD"
                               , `cust-id`: 51
                               , description: "test"
                               , `time-out`: 2
                               , `valid-state`: "enable"
                               , role: 46}})
      RETURN v
   $$) as t(a agtype);
   select *
   from cypher('test_graph', $$
        MATCH (v:customer)
           WHERE v.properties.role = 46
      RETURN v
   $$) as t(a agtype);
   ```
   
   Hope it helps.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to