Safe Haskell | None |
---|---|
Language | Haskell2010 |
The loving comments people have left on Gists, described on http://developer.github.com/v3/gists/comments/.
- commentsOn :: Name Gist -> IO (Either Error (Vector GistComment))
- commentsOnR :: Name Gist -> Maybe Count -> GithubRequest k (Vector GistComment)
- comment :: Id GistComment -> IO (Either Error GistComment)
- gistCommentR :: Id GistComment -> GithubRequest k GistComment
- module Github.Data
Documentation
commentsOn :: Name Gist -> IO (Either Error (Vector GistComment)) Source
All the comments on a Gist, given the Gist ID.
commentsOn "1174060"
commentsOnR :: Name Gist -> Maybe Count -> GithubRequest k (Vector GistComment) Source
List comments on a gist. See https://developer.github.com/v3/gists/comments/#list-comments-on-a-gist
comment :: Id GistComment -> IO (Either Error GistComment) Source
A specific comment, by the comment ID.
comment (Id 62449)
gistCommentR :: Id GistComment -> GithubRequest k GistComment Source
Get a single comment. See https://developer.github.com/v3/gists/comments/#get-a-single-comment
module Github.Data