OBJECT
Image
link GraphQL Schema definition
1 type Image { 2 3 # The original height of the image in pixels. 4 : Int! 5 6 # The URL source of the image. 7 : String! @deprecated( reason: "Use the 'url' query instead." ) 8 9 # The URL source of the image. 10 (: Int, : Int): String! 11 12 # The original width of the image in pixels. 13 : Int! 14 15 }
link Required by
This element is not required by anyone