arturo-lang / grafito

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

Make `put` work with strings #33

Closed drkameleon closed 10 months ago

drkameleon commented 10 months ago

Pretty much like:

fetch 'person [name: "John"]

and

person "John"

are equivalent.


In our case, the goal is the equivalence between:

put 'person [name: "John"]

and

person.new "John"
drkameleon commented 10 months ago

Ready to merge! 🚀