Offset to start from.
(offset int)
| 52 | |
| 53 | // Offset to start from. |
| 54 | func (nvq *NodeVersionQuery) Offset(offset int) *NodeVersionQuery { |
| 55 | nvq.ctx.Offset = &offset |
| 56 | return nvq |
| 57 | } |
| 58 | |
| 59 | // Unique configures the query builder to filter duplicate records on query. |
| 60 | // By default, unique is set to true, and can be disabled using this method. |