> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fluz.app/llms.txt
> Use this file to discover all available pages before exploring further.

# getBulkOperationItems

> Get the per-target results of one of your bulk jobs, using 'Basic <API_KEY>'.

Get the per-target results of one of your bulk jobs, using 'Basic \<API\_KEY>'. Cursor-paginated
and filterable by item status — filter to FAILED to reconcile just the failures, or read
resultResourceId to map a succeeded write back to its Fluz resource. totalCount is the job's
unfiltered item total, not a count of the filtered page. Returns not-found for a job id that is
unknown or belongs to another application.

```graphql theme={null}
query {
  getBulkOperationItems(
    bulkJobId: UUID!
    status: BulkItemStatus
    limit: Int
    after: String
  ): BulkOperationItems
}
```

## Arguments

<ParamField body="bulkJobId" type="UUID!" required>
  *No description provided in the schema yet.*
</ParamField>

<ParamField body="status" type="BulkItemStatus">
  *No description provided in the schema yet.*
</ParamField>

<ParamField body="limit" type="Int">
  Maximum items per page. Maximum and default are 100.
</ParamField>

<ParamField body="after" type="String">
  Opaque cursor from a previous page's nextCursor. Omit for the first page.
</ParamField>

## Returns

[`BulkOperationItems`](/api-reference/types/bulk-operation-items) — A page of per-target results for a bulk job.
