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