datahike

https://datahike.io/, Join the conversation at https://discord.com/invite/kEBzMvb, history for this channel is available at https://clojurians.zulipchat.com/#narrow/stream/180378-slack-archive/topic/datahike
whilo 2020-01-01T15:28:18.002300Z

Happy new year to everybody 🙂 Many cool things are in the pipe for this year... and I hope we will be surprised again by many additional contributions.

whilo 2020-01-01T15:28:27.002500Z

Let's de- and recomopose the database until we get rid of most of the annoying glue code we have to write way too often.

🎉 3
Adrian Smith 2020-01-01T18:29:43.003700Z

hey, what am I doing wrong in this?

(datahike/transact
  connection
  {:db/id bob-id :best-friend [:db/id charlie-id]})
I'm trying to update the best-friend reference type with a pointer to charlie from bob but nothing appears to happen

2020-01-01T21:38:59.004500Z

Shouldn't that be

(datahike/transact
  connection
  {:tx-data [{:db/id bob-id :best-friend [:db/id charlie-id]}]})

👍 1