Order specifies how the records should be ordered.
(o ...passkey.OrderOption)
| 55 | |
| 56 | // Order specifies how the records should be ordered. |
| 57 | func (pq *PasskeyQuery) Order(o ...passkey.OrderOption) *PasskeyQuery { |
| 58 | pq.order = append(pq.order, o...) |
| 59 | return pq |
| 60 | } |
| 61 | |
| 62 | // QueryUser chains the current query on the "user" edge. |
| 63 | func (pq *PasskeyQuery) QueryUser() *UserQuery { |
nothing calls this directly
no outgoing calls
no test coverage detected