in sqldelight can i generate code that allows me to pass a list of values for eg. insert ?
this code allows me to insert one line per call, can this somehow be made variadic ?
insert:
INSERT INTO `users`
VALUES ?
;
afaik it sohuld be possible to repeat values for inserting multiple things at once