Skip to content
R-Service R-Service
RR Tech Service Management Developer Guide

SyncSet Object

All SyncSet objects of an account are accessible by a query on the root connection syncSets . Such a query will return a SyncSetConnection! , which contains the SyncSet objects in its nodes field.

syncSets ( SyncSetConnection! )

Root connection for retrieving SyncSet records.

ArgumentTypeDescription
afterStringReturns the elements in the list that come after the specified cursor.
beforeStringReturns the elements in the list that come before the specified cursor.
filterSyncSetFilterFilter to determine which SyncSet records are returned.
firstIntReturns the first n elements from the list.
lastIntReturns the last n elements from the list.

The fields in this section list which values can be retrieved when querying SyncSet records.

account ( Account )

The account this record belongs to.

createdAt ( ISO8601Timestamp )

The date and time at which the record was created.

description ( String )

Description of the sync set.

id ( ID! )

Unique identifier of the record.

lastSnapshot ( Snapshot )

The latest completed snapshot of this sync set.

name ( String )

The name of the sync set.

resolvedTypes ( String )

Record types included in the sync set. The types match the values supported for the type parameter of CSV import .

types ( String )

Record types for which all records are included in the sync set. The types match the values supported for the type parameter of CSV import .

updatedAt ( ISO8601Timestamp )

The date and time of the last update of the record. If the record has no updates it contains the createdAt value.

The connection fields in this section allow (paged) access to objects related to a specific SyncSet record. The actual objects will be in the nodes field of the connection.

descriptionAttachments ( AttachmentConnection )

Files and inline images linked to the description field.

ArgumentTypeDescription
afterStringReturns the elements in the list that come after the specified cursor.
beforeStringReturns the elements in the list that come before the specified cursor.
firstIntReturns the first n elements from the list.
lastIntReturns the last n elements from the list.

selectedRecords ( RecordConnection )

Individual records selected to be included in the sync set.

ArgumentTypeDescription
afterStringReturns the elements in the list that come after the specified cursor.
beforeStringReturns the elements in the list that come before the specified cursor.
firstIntReturns the first n elements from the list.
lastIntReturns the last n elements from the list.

SyncSet implements the following interfaces. This means that fragments defined on these interfaces may be used in queries returning a SyncSet.