Offset to start from.
(offset int)
| 49 | |
| 50 | // Offset to start from. |
| 51 | func (_q *UserQuery) Offset(offset int) *UserQuery { |
| 52 | _q.ctx.Offset = &offset |
| 53 | return _q |
| 54 | } |
| 55 | |
| 56 | // Unique configures the query builder to filter duplicate records on query. |
| 57 | // By default, unique is set to true, and can be disabled using this method. |
no outgoing calls
no test coverage detected