qualified relationships in datomic
问题 In a relational DB, I could have a table Person and a table Hobby . Every person can have zero, one or more hobbies , and I also want to record, say, the priority of those hobbies for every person . I could create a relationship table with the 2 foreign keys PersonFK and HobbyFK , and one plain column Priority . In datomic, to model a simple n:m relationship (without the priority), I'd probably create an attribute of type Reference with cardinality Many , that I'd use for Person entities. But