Skip to main content

voxelUpdateHistoryConnection

Relay-style cursor-paginated version of voxelUpdateHistory: returns entries from the immutable voxel edit history (voxel_updates_history) for an app, newest first, optionally filtered by user id and a changed-at time window. Page forward with first (default 50, max 200) and after (an opaque cursor from a previous page’s pageInfo.endCursor); the legacy limit/offset args are ignored on this query. Requires a valid bearer token; app-scoped tokens are limited to their own app. Read-only.

voxelUpdateHistoryConnection(
appId: BigInt!
userId: BigInt
from: DateTime
to: DateTime
limit: Int
offset: Int
first: Int
after: String
): VoxelUpdateHistoryConnection!

Arguments

voxelUpdateHistoryConnection.appId ● BigInt! non-null scalar

Id of the app whose voxel edit history to read (decimal string).

voxelUpdateHistoryConnection.userId ● BigInt scalar

Optional filter: only return history entries made by this user id (decimal string).

voxelUpdateHistoryConnection.from ● DateTime scalar

Optional inclusive start of the changed-at time window.

voxelUpdateHistoryConnection.to ● DateTime scalar

Optional inclusive end of the changed-at time window.

voxelUpdateHistoryConnection.limit ● Int deprecated scalar

DEPRECATED

Use voxelUpdateHistoryConnection(first:, after:) instead. See /overview/pagination. Removal no earlier than 2027-01-01. (Ignored by voxelUpdateHistoryConnection, which shares these args.)

Maximum number of entries to return. DEFAULTS to 500 when omitted; allowed range is 1-50000.

voxelUpdateHistoryConnection.offset ● Int deprecated scalar

DEPRECATED

Use voxelUpdateHistoryConnection(first:, after:) instead. See /overview/pagination. Removal no earlier than 2027-01-01. (Ignored by voxelUpdateHistoryConnection, which shares these args.)

Number of entries to skip for pagination. Defaults to 0 when omitted; allowed range is 0-1000000.

voxelUpdateHistoryConnection.first ● Int scalar

Return the first N edges after after. Default 50; clamped to 1..200.

voxelUpdateHistoryConnection.after ● String scalar

Opaque cursor: return edges after this one. Pass a previous page's pageInfo.endCursor. Omit for the first page.

Type

VoxelUpdateHistoryConnection object

Relay-style cursor-paginated connection over voxel edit history entries (VoxelUpdateHistoryEvent). Page with first/after; cursors are opaque.