propertiesConnection
Reads and enables pagination through a set of PropertyInfo.
propertiesConnection(
spaceId: UUID
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
filter: PropertyInfoFilter
): PropertyInfosConnection
Arguments
propertiesConnection.spaceId ● UUID scalar
propertiesConnection.first ● Int scalar
Only read the first n values of the set.
propertiesConnection.last ● Int scalar
Only read the last n values of the set.
propertiesConnection.offset ● Int scalar
Skip the first n values from our after cursor, an alternative to cursor
based pagination. May not be used with last.
propertiesConnection.before ● Cursor scalar
Read all values in the set before (above) this cursor.
propertiesConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
propertiesConnection.filter ● PropertyInfoFilter input
A filter to be used in determining which values should be returned by the collection.
Type
PropertyInfosConnection object
A connection to a list of PropertyInfo values.