-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support UPDATE ... RETURNING #44
Labels
Comments
I think the way we can do this is: updateReturning
:: (SqlExpr (Entity val) -> SqlQuery ret)
-> SqlWriteT m ret defined in |
ulidtko
added a commit
to ulidtko/esqueleto
that referenced
this issue
May 11, 2023
With bitemyapp#44 as a starting point, and more ideas in mind.
ulidtko
added a commit
to ulidtko/esqueleto
that referenced
this issue
Jun 15, 2023
With bitemyapp#44 as a starting point, and more ideas in mind.
ulidtko
added a commit
to ulidtko/esqueleto
that referenced
this issue
Sep 1, 2023
With bitemyapp#44 as a starting point, and more ideas in mind.
ulidtko
added a commit
to ulidtko/esqueleto
that referenced
this issue
Sep 1, 2023
With bitemyapp#44 as a starting point, and more ideas in mind.
ulidtko
added a commit
to ulidtko/esqueleto
that referenced
this issue
May 1, 2024
With bitemyapp#44 as a starting point, and more ideas in mind.
If anyone has alternative ways to reach @parsonsmatt or other maintainers — please ping them. This has been implemented 6 releases ago — PR #362 — but it didn't receive any review so far. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
At least with postgres, one can add a
RETURNING
clause to anUPDATE
query. The type inesqueleto
does not support returning data fromupdate
The text was updated successfully, but these errors were encountered: