Skip to main content

activitiesConnection

DEPRECATED

Use GET https://api.inaccord.com/1/analytics/activities instead. Same Bearer API key; cursor-paginated and ordered by updatedAt. It exports the whole workspace and takes no accordId filter, so a per-accord read pages the export and filters on each node accordId. See https://developers.inaccord.com/activity-export. This table is removed once every consumer has migrated.

Reads and enables pagination through a set of Activity.

activitiesConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [ActivitiesOrderBy!] = [PRIMARY_KEY_ASC]
condition: ActivityCondition
filter: ActivityFilter
): ActivitiesConnection @deprecated

Arguments

activitiesConnection.first ● Int scalar

Only read the first n values of the set.

activitiesConnection.last ● Int scalar

Only read the last n values of the set.

activitiesConnection.offset ● Int scalar

Skip the first n values from our after cursor, an alternative to cursor based pagination. May not be used with last.

activitiesConnection.before ● Cursor scalar

Read all values in the set before (above) this cursor.

activitiesConnection.after ● Cursor scalar

Read all values in the set after (below) this cursor.

activitiesConnection.orderBy ● [ActivitiesOrderBy!] list enum

The method to use when ordering Activity.

activitiesConnection.condition ● ActivityCondition input

A condition to be used in determining which values should be returned by the collection.

activitiesConnection.filter ● ActivityFilter input

A filter to be used in determining which values should be returned by the collection.

Type

ActivitiesConnection object

A connection to a list of Activity values.