OBJECT
UploadPictureOutput
The type representing response objects for a upload contact picture mutation.
link GraphQL Schema definition
- type UploadPictureOutput {
- # The contact ID for which the picture was uploaded.
- : UUID!
- # The list of errors in case the status was `error`.
- : [ErrorMessage!]
- # The file name.
- : String!
- # The picture ID.
- : UUID
- # The status of the operation. Was the upload successful or did it failed.
- : RequestStatus!
- # The URL of the picture.
- : String
- }