Safe Haskell | None |
---|---|
Language | Haskell2010 |
The repo starring API as described on https://developer.github.com/v3/activity/starring/.
- stargazersFor :: Maybe GithubAuth -> Name GithubOwner -> Name Repo -> IO (Either Error (Vector GithubOwner))
- stargazersForR :: Name GithubOwner -> Name Repo -> Maybe Count -> GithubRequest k (Vector GithubOwner)
- reposStarredBy :: Maybe GithubAuth -> Name GithubOwner -> IO (Either Error (Vector Repo))
- reposStarredByR :: Name GithubOwner -> Maybe Count -> GithubRequest k (Vector Repo)
- myStarred :: GithubAuth -> IO (Either Error (Vector Repo))
- myStarredR :: Maybe Count -> GithubRequest True (Vector Repo)
- module Github.Data
Documentation
stargazersFor :: Maybe GithubAuth -> Name GithubOwner -> Name Repo -> IO (Either Error (Vector GithubOwner)) Source
The list of users that have starred the specified Github repo.
userInfoFor' Nothing "mike-burns"
stargazersForR :: Name GithubOwner -> Name Repo -> Maybe Count -> GithubRequest k (Vector GithubOwner) Source
List Stargazers. See https://developer.github.com/v3/activity/starring/#list-stargazers
reposStarredBy :: Maybe GithubAuth -> Name GithubOwner -> IO (Either Error (Vector Repo)) Source
All the public repos starred by the specified user.
reposStarredBy Nothing "croaky"
reposStarredByR :: Name GithubOwner -> Maybe Count -> GithubRequest k (Vector Repo) Source
List repositories being starred. See https://developer.github.com/v3/activity/starring/#list-repositories-being-starred
myStarred :: GithubAuth -> IO (Either Error (Vector Repo)) Source
All the repos starred by the authenticated user.
myStarredR :: Maybe Count -> GithubRequest True (Vector Repo) Source
All the repos starred by the authenticated user.
module Github.Data