Hi guys :smile: Do you know why, when I make a rel...
# prisma-whats-new
m
Hi guys πŸ˜„ Do you know why, when I make a relationship into my mutation, none of my webhooks are called? e.g. - I have my schema
order
and I want to attach a
discount
. So I update
order
with
discountId
. It works, discount is properly attached to
order
, but it does not call
transform_argument
on my
order
or on my
discount
(and I've created pipelines functions for both) πŸ‘€
n
that's an open feature request: https://github.com/graphcool/graphcool/issues/327 πŸ™‚
m
Oh, ok! Thanks for your response ☺️ It would be awesome to have this feature! I must do some checks on update and currently I'm forced to give another argument at the same time on my mutation to have my
discountId
field... πŸ˜… I feel like a bad developer 😿