# app.bivri.graph.createFollow

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

✓ This is the authoritative definition for this NSID.

## Description

Follow another account from the authenticated member's repository.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:uqat5a7hrbww3snbbinxgwah/app.bivri.graph.createFollow)
- [Documentation](https://lexicon.garden/lexicon/did:plc:uqat5a7hrbww3snbbinxgwah/app.bivri.graph.createFollow/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:uqat5a7hrbww3snbbinxgwah/app.bivri.graph.createFollow/examples)

## Definitions

### `app.bivri.graph.createFollow`

**Type**: `procedure`

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subjectDid` | `string` (did) | Yes | DID of the account to follow. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cid` | `string` (cid) | Yes | CID of the follow record that was written. |
| `uri` | `string` (at-uri) | Yes | AT URI of the follow record that was written. |

## Raw Schema

```json
{
  "id": "app.bivri.graph.createFollow",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "subjectDid"
          ],
          "properties": {
            "subjectDid": {
              "type": "string",
              "format": "did",
              "description": "DID of the account to follow."
            }
          }
        },
        "encoding": "application/json"
      },
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "uri",
            "cid"
          ],
          "properties": {
            "cid": {
              "type": "string",
              "format": "cid",
              "description": "CID of the follow record that was written."
            },
            "uri": {
              "type": "string",
              "format": "at-uri",
              "description": "AT URI of the follow record that was written."
            }
          }
        },
        "encoding": "application/json"
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Follow another account from the authenticated member's repository."
}
```
