- interface Image {
- : String
- # The height of the image in pixels.
- : Int
- : ID!
- # If the image supports multiple resolutions this may be used to retrieve the
- # image at an alternative resolution.
- #
- # Arguments
- # resolution: Selects the resolution of the image to retrieve.
- # The resolution
- # must be in the `resolutions` list.
- # Default: "original"
- (: PhotoResolution!): String
- # A set of resolutions the image is available at.
- : [PhotoResolution!]
- # The width of the image in pixels.
- : Int
- }