License | BSD-3-Clause |
---|---|
Maintainer | Oleg Grenrus <oleg.grenrus@iki.fi> |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
The user followers API as described on http://developer.github.com/v3/users/followers/.
Synopsis
- usersFollowingR :: Name User -> FetchCount -> Request k (Vector SimpleUser)
- usersFollowedByR :: Name User -> FetchCount -> Request k (Vector SimpleUser)
- module GitHub.Data
Documentation
usersFollowingR :: Name User -> FetchCount -> Request k (Vector SimpleUser) Source #
List followers of a user. See https://developer.github.com/v3/users/followers/#list-followers-of-a-user
usersFollowedByR :: Name User -> FetchCount -> Request k (Vector SimpleUser) Source #
List users followed by another user. See https://developer.github.com/v3/users/followers/#list-users-followed-by-another-user
module GitHub.Data