To update a field, provide the attribute key-value pair
To remove an existing field, provide the attribute key-value pair, with an "" empty string as the value
If an existing field exists and there are no changes to be made, omit the key from data payload
Operation
GraphQL Operation
# In this operation, we are updating profilePicture for profileId '0x13'mutationUpdateProfile { updateProfile( input: {profileId: "0x13",data: {profilePicture: "https://m.media-amazon.com/images/I/71NVb6VfiyL._UC256,256_CACC,256,256_.jpg" } } ) { id profileId handle ownedBy metadataUrl metadataS3Url }}# In this operation, we are removing coverPicture and updating name for profileId '0x13'mutationUpdateProfile { updateProfile( input: {profileId: "0x13",data: {name: "Uncle Bob 💁🏼♂️",coverPicture: "" } } ) { id profileId handle ownedBy metadataUrl metadataS3Url # any other Profile fields }}