# community.gifthood.feed.getListingReplies

> Published by [gifthood.community](https://lexicon.garden/identity/did:plc:7prvtl4j6wsfmkrfrnwknuxj)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:7prvtl4j6wsfmkrfrnwknuxj/community.gifthood.feed.getListingReplies)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7prvtl4j6wsfmkrfrnwknuxj/community.gifthood.feed.getListingReplies/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7prvtl4j6wsfmkrfrnwknuxj/community.gifthood.feed.getListingReplies/examples)

## Definitions

### `community.gifthood.feed.getListingReplies`

**Type**: `query`

Public notes on a listing, oldest-first, each with the author's resolved identity — AppView-derived from community.gifthood.reply + replygate records. Unpublished method; served by the gifthood AppView.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | Yes | DID of the account that created the listing. |
| `rkey` | `string` | Yes | Record key of the listing. |
| `limit` | `integer` | No | Maximum rows to return. |
| `includeHidden` | `boolean` | No | Include replies hidden by the listing owner's replygate, flagged `hidden: true`. Only honored when the requesting session is the listing owner; ignored otherwise. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `replies` | `array` | Yes | The notes, oldest-first, viewer-block- and adult-gate-filtered. |

#### Errors

- **NotAvailableToPublic**: The author hides their content from logged-out viewers; sign in to view.

## Raw Schema

```json
{
  "id": "community.gifthood.feed.getListingReplies",
  "defs": {
    "main": {
      "type": "query",
      "errors": [
        {
          "name": "NotAvailableToPublic",
          "description": "The author hides their content from logged-out viewers; sign in to view."
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "replies"
          ],
          "properties": {
            "replies": {
              "type": "array",
              "items": {
                "ref": "community.gifthood.feed.defs#replyView",
                "type": "ref"
              },
              "description": "The notes, oldest-first, viewer-block- and adult-gate-filtered."
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "did",
          "rkey"
        ],
        "properties": {
          "did": {
            "type": "string",
            "format": "did",
            "description": "DID of the account that created the listing."
          },
          "rkey": {
            "type": "string",
            "description": "Record key of the listing."
          },
          "limit": {
            "type": "integer",
            "default": 100,
            "maximum": 100,
            "minimum": 1,
            "description": "Maximum rows to return."
          },
          "includeHidden": {
            "type": "boolean",
            "description": "Include replies hidden by the listing owner's replygate, flagged `hidden: true`. Only honored when the requesting session is the listing owner; ignored otherwise."
          }
        }
      },
      "description": "Public notes on a listing, oldest-first, each with the author's resolved identity — AppView-derived from community.gifthood.reply + replygate records. Unpublished method; served by the gifthood AppView."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
