arturo-lang / grafito

Portable, Serverless & Lightweight SQLite-based Graph Database in Arturo
MIT License
143 stars 7 forks source link

Implement undirected edges #26

Closed drkameleon closed 1 year ago

drkameleon commented 1 year ago

Right now, link (and thus ~>) can only create directed edges/links (from node A to node B).

However, internally - as things are right now, at least - we could also support either reverse links (the ability to define edge from B to A, using a simple syntax like A <~ B and also reciprocal/undirected edges, like A <~> B).

drkameleon commented 1 year ago

Ready to merge! 🚀