Offset to start from.
(offset int)
| 40 | |
| 41 | // Offset to start from. |
| 42 | func (sq *SettingQuery) Offset(offset int) *SettingQuery { |
| 43 | sq.ctx.Offset = &offset |
| 44 | return sq |
| 45 | } |
| 46 | |
| 47 | // Unique configures the query builder to filter duplicate records on query. |
| 48 | // 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