another SQLDelight question: do I have to manually define the basic selectAll/insert/selectBy queries?
I’d like it if SQLDelight would automatically generate these queries:
Copy code
selectAll:
SELECT *
FROM hockeyPlayer;
insert:
INSERT INTO hockeyPlayer(player_number, full_name)
VALUES (?, ?);
insertFullPlayerObject:
INSERT INTO hockeyPlayer(player_number, full_name)
VALUES ?;
Is this a reasonable request, or is there something that makes it complicated to generate these functions?