@@ -416,6 +416,10 @@ extension Query where Input == InsertUserInput {
416416 try await execute(with: InsertUserInput(id: id, firstName: firstName, lastName: lastName, preference: preference, favoriteNumber: favoriteNumber, randomValue: randomValue, bornOn: bornOn))
417417 }
418418
419+ func execute(id: Int, firstName: String, lastName: String, preference: Bool?, favoriteNumber: Int?, randomValue: SQLAny?, bornOn: Date?, tx: borrowing Transaction) async throws -> Output {
420+ try await execute(with: InsertUserInput(id: id, firstName: firstName, lastName: lastName, preference: preference, favoriteNumber: favoriteNumber, randomValue: randomValue, bornOn: bornOn), tx: tx)
421+ }
422+
419423 func observe(id: Int, firstName: String, lastName: String, preference: Bool?, favoriteNumber: Int?, randomValue: SQLAny?, bornOn: Date?) -> any QueryObservation<Output> {
420424 observe(with: InsertUserInput(id: id, firstName: firstName, lastName: lastName, preference: preference, favoriteNumber: favoriteNumber, randomValue: randomValue, bornOn: bornOn))
421425 }
@@ -431,6 +435,10 @@ extension Query where Input == SelectUserWithManyInputsInput {
431435 try await execute(with: SelectUserWithManyInputsInput(id: id, firstName: firstName))
432436 }
433437
438+ func execute(id: Int, firstName: String, tx: borrowing Transaction) async throws -> Output {
439+ try await execute(with: SelectUserWithManyInputsInput(id: id, firstName: firstName), tx: tx)
440+ }
441+
434442 func observe(id: Int, firstName: String) -> any QueryObservation<Output> {
435443 observe(with: SelectUserWithManyInputsInput(id: id, firstName: firstName))
436444 }
0 commit comments