-
Hi, I'm trying to do inserts and updates that return the full record, not just the fields that are passed in the request. Thank you in advance! |
Beta Was this translation helpful? Give feedback.
Answered by
dekelev
Jan 22, 2022
Replies: 1 comment 1 reply
-
By default create fetches the inserted record/s from DB. You can use |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
awanuch
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
By default create fetches the inserted record/s from DB. You can use
$noSelect
for increased performance when needed.