Offset to start from.
(offset int)
| 59 | |
| 60 | // Offset to start from. |
| 61 | func (uq *UserQuery) Offset(offset int) *UserQuery { |
| 62 | uq.ctx.Offset = &offset |
| 63 | return uq |
| 64 | } |
| 65 | |
| 66 | // Unique configures the query builder to filter duplicate records on query. |
| 67 | // 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