License | BSD-3-Clause |
---|---|
Maintainer | Oleg Grenrus <oleg.grenrus@iki.fi> |
Safe Haskell | None |
Language | Haskell2010 |
The loving comments people have left on Gists, described on http://developer.github.com/v3/gists/comments/.
Synopsis
- commentsOn :: Name Gist -> IO (Either Error (Vector GistComment))
- commentsOnR :: Name Gist -> FetchCount -> Request k (Vector GistComment)
- comment :: Id GistComment -> IO (Either Error GistComment)
- gistCommentR :: Id GistComment -> Request 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 -> FetchCount -> Request 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 -> Request k GistComment Source #
Query a single comment. See https://developer.github.com/v3/gists/comments/#get-a-single-comment
module GitHub.Data