is there a canonical way to grab all idents from a particular datomic namespace?
问题 say I had :user/name and :user/gender installed as datomic schema. (pprint (d/q '[:find ?ident :where [?e :db/ident ?ident] [_ :db.install/attribute ?e]] (d/db conn))) finds all the db.install/attributes #{[:db/code] [:user/gender] [:fressian/tag] [:db/unique] [:user/name] [:db/fn] [:db/noHistory] [:db/fulltext] [:db/lang] [:db/valueType] [:db/doc] [:db/isComponent] [:db.install/function] [:db/cardinality] [:db/txInstant] [:db/index]} however, I only want to list items in the :user namespace