images
Reads and enables pagination through a set of Image.
images(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [ImagesOrderBy!] = [PRIMARY_KEY_ASC]
condition: ImageCondition
filter: ImageFilter
): ImagesConnection
Arguments
images.first ● Int scalar
Only read the first n values of the set.
images.last ● Int scalar
Only read the last n values of the set.
images.offset ● Int scalar
Skip the first n values from our after cursor, an alternative to cursor
based pagination. May not be used with last.
images.before ● Cursor scalar
Read all values in the set before (above) this cursor.
images.after ● Cursor scalar
Read all values in the set after (below) this cursor.
images.orderBy ● [ImagesOrderBy!] list enum
The method to use when ordering Image.
images.condition ● ImageCondition input
A condition to be used in determining which values should be returned by the collection.
images.filter ● ImageFilter input
A filter to be used in determining which values should be returned by the collection.
Type
ImagesConnection object
A connection to a list of Image values.
@permissions: IMAGES_VIEW,IMAGES_EDIT,ADMIN