public NodeCypherBuilder(string target)
 {
     _match = $"{target}:" + CypherExtensions.GetNodeName <T>();
 }
 public RelationCypherBuilder(string target)
 {
     _relation = $"{target}:" + CypherExtensions.GetNodeName <TRel>();
 }