Order specifies how the records should be ordered.
(o ...oauthclient.OrderOption)
| 56 | |
| 57 | // Order specifies how the records should be ordered. |
| 58 | func (ocq *OAuthClientQuery) Order(o ...oauthclient.OrderOption) *OAuthClientQuery { |
| 59 | ocq.order = append(ocq.order, o...) |
| 60 | return ocq |
| 61 | } |
| 62 | |
| 63 | // QueryGrants chains the current query on the "grants" edge. |
| 64 | func (ocq *OAuthClientQuery) QueryGrants() *OAuthGrantQuery { |
nothing calls this directly
no outgoing calls
no test coverage detected