OBJECT

Image

A type that describes the image.

link GraphQL Schema definition

1type Image {
2
3# Unique identifier of a picture
4_id: String
5
6# The image's filename
7filename: String
8
9# The image's mimetype
10mimetype: String
11
12# The image's encoding
13encoding: String
14
15}