I am trying to insert a vertex with orientjs(previously oriento) query builder. My class has a link type property pointing to another class.
I know I can get it to work with a raw query string but I would love to use the query builder.
Here is what I've tried so far :
db.insert()
.into('VertexClassName')
.set({"prop":"value", "linkProperty":"33:1289287"})
db.insert()
.into('VertexClassName')
.set({"prop":"value", "linkProperty":"#33:1289287"})
I get the following error :
Error on saving record in cluster #13
Am I setting properties in the right way ? Could the error be related to somtehing else ? I have sucessfully ran an insert query in the cluster #13 with a raw query string in the studio...
I don't think that's possible unless you've added a proper field with the right type 'Link' in your schema. (which I rarely do).
Now instead of having the right 'link' type inserted you can do the opposite, store is as a String, and leverage the query functions to use it correctly:
And it will be converted as String (which is a bit sad) but then you can use that in your queries:
And it will be 'eval'-ed to a Node RecordID that you can directly use and call functions like expand() on.
For example:
Will eval the node stored in the insert(), grab the node, expand it and collect its name property.