At the moment, you can use the GraphQL API and query for a _user_ and their _followerCount_:
query{
user(username: "nfrankel") {
numFollowing
}
}
However, I’d like to do the same for my _publication_. But publication is not part of the root query object. Please make it available.