Is there a way to get an entitie by its id? This does not seem to work:
[:find (pull ?e [*])
:in $ ?id
:where
[?e :db/id ?id]]
:db/id is not an attribute. ?e is already entity id in your query.
You don't need a query for this, just pull directly, e.g.
(pull db '[*] 1234) where 1234 is the entity id
Ok, thanks