OBJECT
Image
Generic image
# GraphQL Schema definition
1 type Image { 2 ID : 3 # id of the User who uploaded the image 4 ID : 5 # image url; ex: thumb: url(version: "thumb") 6 # 7 # Arguments 8 # version: name of the image version to which url will point 9 String): String ( : 10 # object with versions, ex. "urls": { "big": { "url": 11 # "https://uploads.example.com/images/big_photo.jpg"}, "small": { "url": 12 # "https://example.com/images/small_photo.jpg" } } } 13 HashObject! : 14 }