OBJECT

Image

link GraphQL Schema definition

1type Image {
2
3# The original height of the image in pixels.
4height: Int!
5
6# The URL source of the image.
7imageURL: String! @deprecated( reason: "Use the 'url' query instead." )
8
9# The URL source of the image.
10url(width: Int, height: Int): String!
11
12# The original width of the image in pixels.
13width: Int!
14
15}

link Required by

This element is not required by anyone