# art.graphik.graph.follow

> Published by [graphik.art](https://lexicon.garden/identity/did:plc:3vr6kzmrdua5wlmb755uvjfu)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:3vr6kzmrdua5wlmb755uvjfu/art.graphik.graph.follow)
- [Documentation](https://lexicon.garden/lexicon/did:plc:3vr6kzmrdua5wlmb755uvjfu/art.graphik.graph.follow/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:3vr6kzmrdua5wlmb755uvjfu/art.graphik.graph.follow/examples)

## Definitions

### `art.graphik.graph.follow`

**Type**: `record`

A reader following a series. Public: a series' follower count is only meaningful because these are readable by anyone.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `notify` | `boolean` | No | Also deliver a notification when the series posts. Kept on the record rather than in app-local state so notification choices travel with the reader to any other Graphik client. |
| `subject` | `string` (at-uri) | Yes | AT-URI of the followed art.graphik.series. |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "art.graphik.graph.follow",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "notify": {
            "type": "boolean",
            "description": "Also deliver a notification when the series posts. Kept on the record rather than in app-local state so notification choices travel with the reader to any other Graphik client."
          },
          "subject": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the followed art.graphik.series."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A reader following a series. Public: a series' follower count is only meaningful because these are readable by anyone."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
