Offset to start from.
(offset int)
| 47 | |
| 48 | // Offset to start from. |
| 49 | func (eq *EntityQuery) Offset(offset int) *EntityQuery { |
| 50 | eq.ctx.Offset = &offset |
| 51 | return eq |
| 52 | } |
| 53 | |
| 54 | // Unique configures the query builder to filter duplicate records on query. |
| 55 | // 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