I am trying to add 2d points (x and y axis) and 3d points (x,y,z axis) as a property to a node and want to add it as a parameter to the cypher statement.
I had create 2 class
class Point2D implements Point{}
class Point3D implements Point{}
where Po...