NewJobDeleteManyParams creates a new JobDeleteManyParams to delete jobs sorted by ID in ascending order, deleting 100 jobs at most.
()
| 24 | // NewJobDeleteManyParams creates a new JobDeleteManyParams to delete jobs |
| 25 | // sorted by ID in ascending order, deleting 100 jobs at most. |
| 26 | func NewJobDeleteManyParams() *JobDeleteManyParams { |
| 27 | return &JobDeleteManyParams{ |
| 28 | limit: 100, |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | func (p *JobDeleteManyParams) copy() *JobDeleteManyParams { |
| 33 | return &JobDeleteManyParams{ |
no outgoing calls
searching dependent graphs…