Offset to start from.
(offset int)
| 43 | |
| 44 | // Offset to start from. |
| 45 | func (ocq *OAuthClientQuery) Offset(offset int) *OAuthClientQuery { |
| 46 | ocq.ctx.Offset = &offset |
| 47 | return ocq |
| 48 | } |
| 49 | |
| 50 | // Unique configures the query builder to filter duplicate records on query. |
| 51 | // By default, unique is set to true, and can be disabled using this method. |
nothing calls this directly
no outgoing calls
no test coverage detected