# dev.sylfr.graph.follow

> Published by [sylfr.dev](https://lexicon.garden/identity/did:plc:nrri2qphzxtjdnptjrpvg4wn)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:nrri2qphzxtjdnptjrpvg4wn/dev.sylfr.graph.follow)
- [Documentation](https://lexicon.garden/lexicon/did:plc:nrri2qphzxtjdnptjrpvg4wn/dev.sylfr.graph.follow/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:nrri2qphzxtjdnptjrpvg4wn/dev.sylfr.graph.follow/examples)

## Definitions

### `dev.sylfr.graph.follow`

**Type**: `record`

Record declaring a social 'follow' relationship of another account. Duplicate follows will be ignored by the AppView. Mirror of `app.bsky.graph.follow`.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `via` | `ref` → `com.atproto.repo.strongRef` | No |  |
| `subject` | `string` (did) | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "dev.sylfr.graph.follow",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "via": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref"
          },
          "subject": {
            "type": "string",
            "format": "did"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "Record declaring a social 'follow' relationship of another account. Duplicate follows will be ignored by the AppView. Mirror of `app.bsky.graph.follow`."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
