# Twitter Followers

### Fields

| Field  | Type   | Description             |
| ------ | ------ | ----------------------- |
| amount | Int    | Twitter followers count |
| date   | String | ISO 8601 formatted date |

### Query example

```graphql
# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
       twitterFollowers {
           amount
           date
       }
    }
}

# variables
{ "domain": "stripe.com" }
```
