INTERFACE
Image
link GraphQL Schema definition
- interface Image {
 - : ID! 
 - : String 
 - #   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 height of the image in pixels.
 - : Int 
 - #   The width of the image in pixels.
 - : Int 
 - }