userCurrentAvatarAdd.graphql 292 B

123456789101112131415161718
  1. mutation userCurrentAvatarAdd($images: AvatarInput!) {
  2. userCurrentAvatarAdd(images: $images) {
  3. avatar {
  4. id
  5. default
  6. deletable
  7. initial
  8. imageFull
  9. imageResize
  10. imageHash
  11. createdAt
  12. updatedAt
  13. }
  14. errors {
  15. ...errors
  16. }
  17. }
  18. }