contrib
contrib copied to clipboard
feat/multiple edge ordering fields
Feature
Ability to set multiple term for ordering by edge
Usecase
I have a field that I need to order by multiple edge fields
Solution
pass a list of order terms separated by comma(,)
edge.From("role", GroupRoleType.Type).
Ref("grouproles").
Field("role_id").
Required().
Unique().
Annotations(
entgql.OrderField("ROLE_HIERARCHY,ROLE_TARGET"),
)
Is there an expected timeline for merging this, or are there any blockers?