Is there a way to regain schema query-ability using Datascript without resorting to passing the schema in as an input arg? I'm aiming for more 1:1 correspondence between datascript/datomic code. If I create a db with (d/create-conn schema)
, and then subsequently (d/transact! conn schema)
, can I potentially "fake it"?
Hm...that actually worked pretty well. Still, curious as to whether there are any "gotchas" to be aware of.