Properties cannot have object values. If you're looking to store multiple properties on language
, and those properties all belong to the language and not any other entity, then you should model Language as a node. You can store properties on the relationship between the employee and language as well if required.
Then you'll end up with something like this:
create (l:Language {name:"C", otherProperty:"property value"})
create (e:Employee {name:"Sam"})
create (e)-[:SPEAKS {level:"Fluent"}]->(l)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…