Skip to main content

ListVoxelUpdatesByDistanceInput

Arguments for listVoxelUpdatesByDistance: selects recorded voxel edits across chunks within a cubic (Chebyshev) radius of a center chunk, grouped per chunk and ordered by increasing distance.

input ListVoxelUpdatesByDistanceInput {
appId: BigInt!
centerCoordinate: ChunkCoordinatesInput!
maxDistance: Int!
limit: Int
skip: Int
since: DateTime
}

Fields

ListVoxelUpdatesByDistanceInput.appId ● BigInt! non-null scalar

Id of the app whose voxel edits to search (decimal string).

ListVoxelUpdatesByDistanceInput.centerCoordinate ● ChunkCoordinatesInput! non-null input

Center chunk of the search cube.

ListVoxelUpdatesByDistanceInput.maxDistance ● Int! non-null scalar

Cube radius in chunks measured as Chebyshev distance: matches chunks whose x, y and z each differ from the center by at most this many chunks. Integer, 1-8 inclusive.

ListVoxelUpdatesByDistanceInput.limit ● Int scalar

Maximum number of CHUNKS (not voxels) to include. Defaults to 1000 when omitted. Must be >= 0.

ListVoxelUpdatesByDistanceInput.skip ● Int scalar

Number of chunks to skip for pagination. Defaults to 0 when omitted. Must be >= 0.

ListVoxelUpdatesByDistanceInput.since ● DateTime scalar

Optional inclusive lower time bound; only edits with createdAt >= this timestamp are returned.

Member Of

listVoxelUpdatesByDistance query