Is it in quill somehow possible to update multiple values on a conflict? E.g like this:
val a = quote {
query[Product]
.insert(_.id -> 1, _.sku -> 10)
.onConflictUpdate((t, e) => t.sku -> (t.sku + e.sku), t.abc -> e.abc)
}
I tried it like the way above and always got a "not found: value t" error when I had two values. The documentation also does not answer questions into this direction.