I think I’m going insane…
Trying to update a nested object, but when I do, it creates a new instance of the nested type.
updateUser(
id: $id,
firstName: $firstName,
lastName: $lastName,
mobile: $mobile,
address: {
postalCity: $postalCity,
postalCode: $postalCode
}
) {
id
}
Is above syntax wrong for updating existing address? Please help me with the correct syntax 🙂