skipDuplicates method

JsonQueryBuilder skipDuplicates([
  1. bool value = true
])

For createMany/createManyAndReturn: skip rows that violate a unique constraint instead of erroring (ON CONFLICT DO NOTHING).

Implementation

JsonQueryBuilder skipDuplicates([bool value = true]) {
  _skipDuplicates = value;
  return this;
}