Update user with additional fields
I've defined additional fields on my User struct
but then when I try to programmatically create a user, eg
it doesn't typecheck properly, is there something I have to do?
4 Replies
is
additionalFields
in user
object?the issue is because my fields where set to
input: false
but indeed if we set them to input: true
it means anyone can override those values, so depending on each field it might or might not be suitedUpdate it using db
yes that's what I did thanks!