module GitHub.Endpoints.GitData.Commits (
gitCommitR,
module GitHub.Data,
) where
import GitHub.Data
import Prelude ()
gitCommitR :: Name Owner -> Name Repo -> Name GitCommit -> Request k GitCommit
gitCommitR :: forall (k :: RW).
Name Owner -> Name Repo -> Name GitCommit -> Request k GitCommit
gitCommitR Name Owner
user Name Repo
repo Name GitCommit
sha =
Paths -> QueryString -> Request k GitCommit
forall (mt :: RW) a. Paths -> QueryString -> Request mt a
query [Text
"repos", Name Owner -> Text
forall a. IsPathPart a => a -> Text
toPathPart Name Owner
user, Name Repo -> Text
forall a. IsPathPart a => a -> Text
toPathPart Name Repo
repo, Text
"git", Text
"commits", Name GitCommit -> Text
forall a. IsPathPart a => a -> Text
toPathPart Name GitCommit
sha] []