SyncSet Object

Root Connection

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.

Argument Type Description
after String

Returns the elements in the list that come after the specified cursor.

before String

Returns the elements in the list that come before the specified cursor.

filter SyncSetFilter

Filter to determine which SyncSet records are returned.

first Int

Returns the first n elements from the list.

last Int

Returns the last n elements from the list.

Fields

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.

Connections

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.

Argument Type Description
after String

Returns the elements in the list that come after the specified cursor.

before String

Returns the elements in the list that come before the specified cursor.

first Int

Returns the first n elements from the list.

last Int

Returns the last n elements from the list.

selectedRecords (RecordConnection)

Individual records selected to be included in the sync set.

Argument Type Description
after String

Returns the elements in the list that come after the specified cursor.

before String

Returns the elements in the list that come before the specified cursor.

first Int

Returns the first n elements from the list.

last Int

Returns the last n elements from the list.

Implements

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