# zone.stratos.sync.listRepoOps

> Published by [lexicon.northsky.app](https://lexicon.garden/identity/did:plc:6uxgo3ypovauub7nblwylqyv)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:6uxgo3ypovauub7nblwylqyv/zone.stratos.sync.listRepoOps)
- [Documentation](https://lexicon.garden/lexicon/did:plc:6uxgo3ypovauub7nblwylqyv/zone.stratos.sync.listRepoOps/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:6uxgo3ypovauub7nblwylqyv/zone.stratos.sync.listRepoOps/examples)

## Definitions

### `zone.stratos.sync.listRepoOps`

**Type**: `query`

Incremental pull sync of a repo's operation log (oplog), mirroring com.atproto.space.listRepoOps semantics. Returns record operations after the `since` revision, with current record values inlined by default. Boundary-gated: the caller only observes operations for records within its enrolled boundaries. The response reaches the head of the oplog when `cursor` is absent; the repo's current signed commit is then included (unless the repo has no commits yet), consistent with the operations returned. When a concurrent write is detected, a cursor is returned instead of the commit; that response can carry no operations and repeat the cursor you sent, so poll again while a cursor is present and do not read an unchanged cursor as a stall. A write that commits after the head probe is not detected; it falls outside this snapshot and arrives on a later poll. Callers must authenticate with a signed service JWT via the Authorization: Bearer header. The oplog is a droppable transport optimization; if `since` predates retained history the OplogTruncated error is returned (stricter than upstream, which silently restarts) so the caller falls back to full-state recovery (listRecordPaths).

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | Yes | The DID of the repo to sync. |
| `limit` | `integer` | No | Maximum number of operations to return in this page. |
| `since` | `string` (tid) | No | A revision (TID): the caller's own sync position. Only operations after this revision are returned. Omit to start from the beginning of retained history. Use `cursor` to continue a paginated response. |
| `cursor` | `string` | No | Opaque pagination cursor from a previous response. Takes precedence over `since` when both are supplied. |
| `excludeValues` | `boolean` | No | When true, record values are omitted and only operation metadata is returned. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `ops` | `array` | Yes | The operations in this page, in ascending revision order. |
| `commit` | `ref` → `#signedCommit` | No | The repo's current signed MST commit. Included when the response reaches the head of the oplog; omitted on backfill responses and when the repo has no commits yet (no writes) - in that case there is nothing to sign and also no ops to sync. |
| `cursor` | `string` | No | Opaque pagination cursor to fetch the next page. Absent once the response reaches the head of the oplog. Can repeat the cursor you sent when a concurrent write was detected. |

#### Errors

- **OplogTruncated**: The requested `since` revision falls outside retained history: it predates the oldest retained event (compacted), postdates the newest (not a rev this repo issued), or there is no retained log to check it against. Also returned for an unusable `cursor`: malformed, predating retained history (compacted between pages), or beyond the newest retained event. The caller must fall back to full-state recovery. Stricter than upstream, which restarts from the beginning of retained history instead of erroring.
- **RepoNotFound**: The requested repo does not exist.
- **AuthRequired**: Service authentication is required.

### `zone.stratos.sync.listRepoOps#repoOp`

**Type**: `object`

A single record operation in the oplog. `cid` null means delete; `prev` null means create.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cid` | `string` (cid) | Yes | The CID (string form) of the current record value. Null for a delete. |
| `rev` | `string` (tid) | Yes | The revision of the commit that produced this operation. Atomic multi-writes share one rev. |
| `prev` | `string` (cid) | Yes | The CID (string form) of the record value this operation superseded. Null for a create, or when the superseded value predates the returned window. |
| `rkey` | `string` (record-key) | Yes | The record key. |
| `value` | `unknown` | No | The current record value, inlined by default for create/update ops. Omitted when excludeValues is true, for a delete, or when the value has been superseded by a later operation. |
| `collection` | `string` (nsid) | Yes | The record collection. |

### `zone.stratos.sync.listRepoOps#signedCommit`

**Type**: `object`

A signed MST v3 commit, as persisted (read verbatim, not re-signed).

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | Yes | The DID of the repo. |
| `rev` | `string` (tid) | Yes | The commit revision. |
| `sig` | `string` | Yes | The commit signature, base64-encoded (the exact persisted bytes). |
| `data` | `string` (cid) | Yes | The CID (string form) of the MST root node. |
| `prev` | `string` (cid) | No | The CID (string form) of the previous commit. Absent for the first commit. |
| `version` | `integer` | Yes | The commit version (3). |

## Raw Schema

```json
{
  "id": "zone.stratos.sync.listRepoOps",
  "defs": {
    "main": {
      "type": "query",
      "errors": [
        {
          "name": "OplogTruncated",
          "description": "The requested `since` revision falls outside retained history: it predates the oldest retained event (compacted), postdates the newest (not a rev this repo issued), or there is no retained log to check it against. Also returned for an unusable `cursor`: malformed, predating retained history (compacted between pages), or beyond the newest retained event. The caller must fall back to full-state recovery. Stricter than upstream, which restarts from the beginning of retained history instead of erroring."
        },
        {
          "name": "RepoNotFound",
          "description": "The requested repo does not exist."
        },
        {
          "name": "AuthRequired",
          "description": "Service authentication is required."
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "ops"
          ],
          "properties": {
            "ops": {
              "type": "array",
              "items": {
                "ref": "#repoOp",
                "type": "ref"
              },
              "description": "The operations in this page, in ascending revision order."
            },
            "commit": {
              "ref": "#signedCommit",
              "type": "ref",
              "description": "The repo's current signed MST commit. Included when the response reaches the head of the oplog; omitted on backfill responses and when the repo has no commits yet (no writes) - in that case there is nothing to sign and also no ops to sync."
            },
            "cursor": {
              "type": "string",
              "description": "Opaque pagination cursor to fetch the next page. Absent once the response reaches the head of the oplog. Can repeat the cursor you sent when a concurrent write was detected."
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "did"
        ],
        "properties": {
          "did": {
            "type": "string",
            "format": "did",
            "description": "The DID of the repo to sync."
          },
          "limit": {
            "type": "integer",
            "default": 100,
            "maximum": 1000,
            "minimum": 1,
            "description": "Maximum number of operations to return in this page."
          },
          "since": {
            "type": "string",
            "format": "tid",
            "description": "A revision (TID): the caller's own sync position. Only operations after this revision are returned. Omit to start from the beginning of retained history. Use `cursor` to continue a paginated response."
          },
          "cursor": {
            "type": "string",
            "description": "Opaque pagination cursor from a previous response. Takes precedence over `since` when both are supplied."
          },
          "excludeValues": {
            "type": "boolean",
            "default": false,
            "description": "When true, record values are omitted and only operation metadata is returned."
          }
        }
      },
      "description": "Incremental pull sync of a repo's operation log (oplog), mirroring com.atproto.space.listRepoOps semantics. Returns record operations after the `since` revision, with current record values inlined by default. Boundary-gated: the caller only observes operations for records within its enrolled boundaries. The response reaches the head of the oplog when `cursor` is absent; the repo's current signed commit is then included (unless the repo has no commits yet), consistent with the operations returned. When a concurrent write is detected, a cursor is returned instead of the commit; that response can carry no operations and repeat the cursor you sent, so poll again while a cursor is present and do not read an unchanged cursor as a stall. A write that commits after the head probe is not detected; it falls outside this snapshot and arrives on a later poll. Callers must authenticate with a signed service JWT via the Authorization: Bearer header. The oplog is a droppable transport optimization; if `since` predates retained history the OplogTruncated error is returned (stricter than upstream, which silently restarts) so the caller falls back to full-state recovery (listRecordPaths)."
    },
    "repoOp": {
      "type": "object",
      "nullable": [
        "cid",
        "prev"
      ],
      "required": [
        "rev",
        "collection",
        "rkey",
        "cid",
        "prev"
      ],
      "properties": {
        "cid": {
          "type": "string",
          "format": "cid",
          "description": "The CID (string form) of the current record value. Null for a delete."
        },
        "rev": {
          "type": "string",
          "format": "tid",
          "description": "The revision of the commit that produced this operation. Atomic multi-writes share one rev."
        },
        "prev": {
          "type": "string",
          "format": "cid",
          "description": "The CID (string form) of the record value this operation superseded. Null for a create, or when the superseded value predates the returned window."
        },
        "rkey": {
          "type": "string",
          "format": "record-key",
          "description": "The record key."
        },
        "value": {
          "type": "unknown",
          "description": "The current record value, inlined by default for create/update ops. Omitted when excludeValues is true, for a delete, or when the value has been superseded by a later operation."
        },
        "collection": {
          "type": "string",
          "format": "nsid",
          "description": "The record collection."
        }
      },
      "description": "A single record operation in the oplog. `cid` null means delete; `prev` null means create."
    },
    "signedCommit": {
      "type": "object",
      "required": [
        "did",
        "version",
        "data",
        "rev",
        "sig"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did",
          "description": "The DID of the repo."
        },
        "rev": {
          "type": "string",
          "format": "tid",
          "description": "The commit revision."
        },
        "sig": {
          "type": "string",
          "description": "The commit signature, base64-encoded (the exact persisted bytes)."
        },
        "data": {
          "type": "string",
          "format": "cid",
          "description": "The CID (string form) of the MST root node."
        },
        "prev": {
          "type": "string",
          "format": "cid",
          "description": "The CID (string form) of the previous commit. Absent for the first commit."
        },
        "version": {
          "type": "integer",
          "description": "The commit version (3)."
        }
      },
      "description": "A signed MST v3 commit, as persisted (read verbatim, not re-signed)."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
