Otion-Core/graphism
Document and test the :from option when defining computed relations
Offen
#41 geöffnet am 15.10.2021
documentationgood first issuetesting
Repository-Metriken
- Stars
- (0 Sterne)
- PR-Merge-Metriken
- (PR-Metriken ausstehend)
Beschreibung
Eg. given this schema:
entity :user do
...
end
entity :blog do
has_many(:posts)
end
entity :post do
belongs_to(:blog)
belongs_to(:user,
modifiers: [:computed],
from: :user ## <--- this
end