Offset to start from.
(offset int)
| 55 | |
| 56 | // Offset to start from. |
| 57 | func (fq *FileQuery) Offset(offset int) *FileQuery { |
| 58 | fq.ctx.Offset = &offset |
| 59 | return fq |
| 60 | } |
| 61 | |
| 62 | // Unique configures the query builder to filter duplicate records on query. |
| 63 | // 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