Offset to start from.
(offset int)
| 49 | |
| 50 | // Offset to start from. |
| 51 | func (spq *StoragePolicyQuery) Offset(offset int) *StoragePolicyQuery { |
| 52 | spq.ctx.Offset = &offset |
| 53 | return spq |
| 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. |
nothing calls this directly
no outgoing calls
no test coverage detected