Allow requesting User.followers paginated results in a similar way to posts.
Right now, it is only possible to get 12 followers, regardless if you have more.
The ideal query would support a
page
argument on the query like the following.
{
user(username: "brignoni") {
followers(page: 2) {
username
}
}
}