You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My procedure accepts partial user (without _id). So I can pass just the name and only the name will be used (like in PATCH rest verb).
Unfortunately if I try to update just the age field, the trpc-panel sends object filled with nulls instead of undefined values.
Therefore I must fill all of the users fields.
I don't really want to change all of my *.partial() to *.partial().nullable() throughout the whole codebase.
Is there a way to tell trpc-panel to just undefined as default, not-yet-set values? Of course I tried to find it by my own but didn't manage to do it.
Thanks you for your time.
Best regards!
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
First of all, the library is GREAT and I want to thank you for your contributon to OSS.
Unfortunately I'm struggling with something.
Let's say there is a
user
field that I declared using:And there is a procedure:
userRouter.editMyUser
:My procedure accepts partial user (without
_id
). So I can pass just thename
and only the name will be used (like inPATCH
rest verb).Unfortunately if I try to update just the
age
field, thetrpc-panel
sends object filled with nulls instead of undefined values.Therefore I must fill all of the users fields.
I don't really want to change all of my
*.partial()
to*.partial().nullable()
throughout the whole codebase.Is there a way to tell
trpc-panel
to justundefined
as default, not-yet-set values? Of course I tried to find it by my own but didn't manage to do it.Thanks you for your time.
Best regards!
Beta Was this translation helpful? Give feedback.
All reactions