# support.supper.feed.listCheers

> Published by [supper.support](https://lexicon.garden/identity/did:plc:mcsqdltevtjpu26xthzzmm2l)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:mcsqdltevtjpu26xthzzmm2l/support.supper.feed.listCheers)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mcsqdltevtjpu26xthzzmm2l/support.supper.feed.listCheers/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mcsqdltevtjpu26xthzzmm2l/support.supper.feed.listCheers/examples)

## Definitions

### `support.supper.feed.listCheers`

**Type**: `query`

Public actors who cheered a canonical post, with one entry per actor. No authentication is required; responses contain public records only.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No |  |
| `cursor` | `string` | No |  |
| `subject` | `string` (at-uri) | Yes |  |
| `additionalSubjects` | `array` | No | Optional additional public subject to union with one primary subject. Actors are deduplicated across both. Clients must verify the relationship; this query does not assert that the subjects identify the same post. For counts, requires exactly one primary subject. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `total` | `integer` | Yes |  |
| `cheers` | `array` | Yes |  |
| `cursor` | `string` | No |  |
| `additionalSubjects` | `array` | No | Echoes the additional subject included in the actor-deduplicated union, when requested. |

### `support.supper.feed.listCheers#cheerView`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` (at-uri) | Yes | AT URI of the actor-owned public Cheers record represented by this entry. |
| `author` | `string` (did) | Yes |  |
| `createdAt` | `string` (datetime) | Yes | Creation time of the represented Cheers record. |

## Raw Schema

```json
{
  "id": "support.supper.feed.listCheers",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "cheers",
            "total"
          ],
          "properties": {
            "total": {
              "type": "integer",
              "minimum": 0
            },
            "cheers": {
              "type": "array",
              "items": {
                "ref": "#cheerView",
                "type": "ref"
              },
              "maxLength": 100
            },
            "cursor": {
              "type": "string",
              "maxLength": 512
            },
            "additionalSubjects": {
              "type": "array",
              "items": {
                "type": "string",
                "format": "at-uri"
              },
              "maxLength": 1,
              "description": "Echoes the additional subject included in the actor-deduplicated union, when requested."
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "subject"
        ],
        "properties": {
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1
          },
          "cursor": {
            "type": "string",
            "maxLength": 512
          },
          "subject": {
            "type": "string",
            "format": "at-uri"
          },
          "additionalSubjects": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "at-uri"
            },
            "maxLength": 1,
            "description": "Optional additional public subject to union with one primary subject. Actors are deduplicated across both. Clients must verify the relationship; this query does not assert that the subjects identify the same post. For counts, requires exactly one primary subject."
          }
        }
      },
      "description": "Public actors who cheered a canonical post, with one entry per actor. No authentication is required; responses contain public records only."
    },
    "cheerView": {
      "type": "object",
      "required": [
        "uri",
        "author",
        "createdAt"
      ],
      "properties": {
        "uri": {
          "type": "string",
          "format": "at-uri",
          "description": "AT URI of the actor-owned public Cheers record represented by this entry."
        },
        "author": {
          "type": "string",
          "format": "did"
        },
        "createdAt": {
          "type": "string",
          "format": "datetime",
          "description": "Creation time of the represented Cheers record."
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
