internal static CypherBuilderContext Relationship(RelationshipLink link) { var c = new CypherBuilderContext(); c.Value = link.ToString(); return c; }
public static ICypherFluentQuery OptionalMatch(this ICypherFluentQuery q, RelationshipLink relationship) { q = q.OptionalMatch(relationship.AsCypher); return q; }
public static CypherBuilderContext Relationship(string fromIdentifer, string toIdentifier) { var rlink = new RelationshipLink(); rlink.From.Identifier = fromIdentifer; rlink.To = new Node {Identifier = toIdentifier};return Relationship(rlink); }