> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dune.com/llms.txt
> Use this file to discover all available pages before exploring further.

# dune.shot.dataset_follows

> Snapshot space follows — users subscribed to governance spaces.

export const TableSample = ({tableName, tableSchema}) => <>
    <div className="hidden dark:block">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}&darkMode=true`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
    <div className="dark:hidden">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
  </>;

## Table description

The `dune.shot.dataset_follows` table provides data on the follow relationships between users on Snapshot.

## Table Schema

| Column Name | Type      | Description                                                     |
| ----------- | --------- | --------------------------------------------------------------- |
| id          | varbinary | Unique identifier of the follow record                          |
| ipfs        | varchar   | IPFS hash of the follow data                                    |
| space       | varchar   | Snapshot space (DAO) being followed                             |
| created     | bigint    | Unix timestamp when the follow was created                      |
| follower    | varbinary | Address of the user following the space                         |
| to\_delete  | bigint    | Flag indicating if the follow has been removed (1 = unfollowed) |

## Table Sample

<TableSample tableSchema="dune.shot" tableName="dataset_follows" />
