Skip to main content

editVersions

Reads a set of EditVersion.

editVersions(
first: Int
offset: Int
orderBy: [EditVersionsOrderBy!]
condition: EditVersionCondition
filter: EditVersionFilter
): [EditVersion!]

Arguments

editVersions.first ● Int scalar

Only read the first n values of the set.

editVersions.offset ● Int scalar

Skip the first n values.

editVersions.orderBy ● [EditVersionsOrderBy!] list enum

The method to use when ordering EditVersion.

editVersions.condition ● EditVersionCondition input

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

editVersions.filter ● EditVersionFilter input

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

Type

EditVersion object

One published edit. Each EditVersion captures a set of operations (createEntity / updateEntity / createRelation / deleteRelation / etc.) applied atomically. The graph's current state is the sum of all applied EditVersions.

:::tip See also

Cookbook recipes that use this:

:::