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