I'm using SQL Management 2017 and its graph database system. I'm facing a problem, the type in $node_id (or $edge_id) column cannot be anything else except "node" or "edge". I want to know if i can custom this for adding another type which is "compositeedge".
Exemples of $node_id :
{"type":"node","schema":"dbo","table":"Variante","id":1}{"type":"edge","schema":"dbo","table":"PM__Ati","id":1}
Want i want :
{"type":"compositeedge","schema":"dbo","table":"Var__PM__Ati","id":1}
Thank you