CREATE INDEX ON:employee(p_id)
i am getting error
Invalid create index syntax, use `CREATE INDEX FOR ...` instead. (line 1, column 1 (offset: 0))
"CREATE INDEX ON:employee(p_id)"
CREATE INDEX ON:employee(p_id)
i am getting error
Invalid create index syntax, use `CREATE INDEX FOR ...` instead. (line 1, column 1 (offset: 0))
"CREATE INDEX ON:employee(p_id)"
CREATE INDEX FOR (n:employee) ON (n:p_id)
you may want to name the index instead of it given a default name.
CREATE INDEX employee_p_id FOR (n:employee) ON (n:p_id)