Skip to main content

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. Returns up to limit entries (DEFAULT 500, max 50000) starting at offset. Requires a valid bearer token; app-scoped tokens are limited to their own app. Read-only.

voxelUpdateHistory(
appId: BigInt!
userId: BigInt
from: DateTime
to: DateTime
limit: Int
offset: Int
): [VoxelUpdateHistoryEvent!]!

Arguments

voxelUpdateHistory.appId ● BigInt! non-null scalar

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

voxelUpdateHistory.userId ● BigInt scalar

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

voxelUpdateHistory.from ● DateTime scalar

Optional inclusive start of the changed-at time window.

voxelUpdateHistory.to ● DateTime scalar

Optional inclusive end of the changed-at time window.

voxelUpdateHistory.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.

voxelUpdateHistory.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.

Type

VoxelUpdateHistoryEvent object

One entry in the immutable voxel edit history (voxel_updates_history): a recorded change of a single voxel's type, with who and when. Returned by voxelUpdateHistory, newest first.