# app.didpic.feed.getCommentReplies

> Published by [lexicons.didpic.app](https://lexicon.garden/identity/did:plc:an2jtp4jgkkbtmwfzhpbxawd)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.getCommentReplies)
- [Documentation](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.getCommentReplies/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.feed.getCommentReplies/examples)

## Definitions

### `app.didpic.feed.getCommentReplies`

**Type**: `query`

Replies to a comment.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` (at-uri) | Yes |  |
| `limit` | `integer` | No |  |
| `cursor` | `string` | No |  |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cursor` | `string` | No |  |
| `replies` | `array` | Yes |  |

#### Errors

- **CommentNotFound**

## Raw Schema

```json
{
  "id": "app.didpic.feed.getCommentReplies",
  "defs": {
    "main": {
      "type": "query",
      "errors": [
        {
          "name": "CommentNotFound"
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "replies"
          ],
          "properties": {
            "cursor": {
              "type": "string"
            },
            "replies": {
              "type": "array",
              "items": {
                "ref": "app.didpic.feed.defs#commentView",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "uri"
        ],
        "properties": {
          "uri": {
            "type": "string",
            "format": "at-uri"
          },
          "limit": {
            "type": "integer",
            "default": 30,
            "maximum": 100,
            "minimum": 1
          },
          "cursor": {
            "type": "string"
          }
        }
      },
      "description": "Replies to a comment."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
