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.
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
)
The account this record belongs to.
ISO8601Timestamp
)
The date and time at which the record was created.
String
)
Description of the sync set.
ID!
)
Unique identifier of the record.
Snapshot
)
The latest completed snapshot of this sync set.
String
)
The name of the sync set.
[String!]
)
Record types included in the sync set. The types match the values supported
for the type
parameter of CSV
import.
[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.
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.
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. |
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.