# africa.kandake.asha.graph.getFollowers

> Published by [kandake.africa](https://lexicon.garden/identity/did:plc:lrphxvv25aibthe7xoc2eeyy)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/africa.kandake.asha.graph.getFollowers)
- [Documentation](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/africa.kandake.asha.graph.getFollowers/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:lrphxvv25aibthe7xoc2eeyy/africa.kandake.asha.graph.getFollowers/examples)

## Definitions

### `africa.kandake.asha.graph.getFollowers`

**Type**: `query`

List accounts that follow the given user within the Asha network.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `actor` | `string` (at-identifier) | Yes |  |
| `limit` | `integer` | No |  |
| `cursor` | `string` | No |  |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cursor` | `string` | No |  |
| `followers` | `array` | Yes |  |

## Raw Schema

```json
{
  "id": "africa.kandake.asha.graph.getFollowers",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "followers"
          ],
          "properties": {
            "cursor": {
              "type": "string"
            },
            "followers": {
              "type": "array",
              "items": {
                "ref": "africa.kandake.asha.graph.getFollows#followView",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "actor"
        ],
        "properties": {
          "actor": {
            "type": "string",
            "format": "at-identifier"
          },
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1
          },
          "cursor": {
            "type": "string"
          }
        }
      },
      "description": "List accounts that follow the given user within the Asha network."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
