(-> '[:find (pull ?content [*])
:in $ ?user-id-string
:where
[?user-id :user/id-string ?user-id-string]
[?content :content/user ?user-id]
(not [?content :content/deleted true])]
(d/q db user-id-string)
(->> (map first)
(sort-by :content/event-timestamp-lng)))