Safe Haskell | None |
---|---|
Language | Haskell2010 |
The user followers API as described on http://developer.github.com/v3/users/followers/.
- usersFollowing :: Name GithubOwner -> IO (Either Error (Vector SimpleOwner))
- usersFollowedBy :: Name GithubOwner -> IO (Either Error (Vector SimpleOwner))
- usersFollowingR :: Name GithubOwner -> Maybe Count -> GithubRequest k (Vector SimpleOwner)
- usersFollowedByR :: Name GithubOwner -> Maybe Count -> GithubRequest k (Vector SimpleOwner)
- module Github.Data
Documentation
usersFollowing :: Name GithubOwner -> IO (Either Error (Vector SimpleOwner)) Source
All the users following the given user.
usersFollowing "mike-burns"
usersFollowedBy :: Name GithubOwner -> IO (Either Error (Vector SimpleOwner)) Source
All the users that the given user follows.
usersFollowedBy "mike-burns"
usersFollowingR :: Name GithubOwner -> Maybe Count -> GithubRequest k (Vector SimpleOwner) Source
List followers of a user. See https://developer.github.com/v3/users/followers/#list-followers-of-a-user
usersFollowedByR :: Name GithubOwner -> Maybe Count -> GithubRequest k (Vector SimpleOwner) Source
List users followed by another user. See https://developer.github.com/v3/users/followers/#list-users-followed-by-another-user
module Github.Data