age-website
age-website copied to clipboard
Error in Syntax of Create vertex and add labels and properties
Current Syntax:
SELECT *
FROM cypher('graph_name', $$
CREATE (:Person {name: 'Andres', title: 'Developer')
$$) as (n agtype);
'}' is missing
Correct Syntax:
SELECT *
FROM cypher('graph_name', $$
CREATE (:Person {name: 'Andres', title: 'Developer'})
$$) as (n agtype);