Order specifies how the records should be ordered.
(o ...user.OrderOption)
| 62 | |
| 63 | // Order specifies how the records should be ordered. |
| 64 | func (_q *UserQuery) Order(o ...user.OrderOption) *UserQuery { |
| 65 | _q.order = append(_q.order, o...) |
| 66 | return _q |
| 67 | } |
| 68 | |
| 69 | // QueryMemberships chains the current query on the "memberships" edge. |
| 70 | func (_q *UserQuery) QueryMemberships() *MembershipQuery { |
no outgoing calls
no test coverage detected