module GitHub.Endpoints.Repos.Forks (
forksForR,
module GitHub.Data,
) where
import GitHub.Data
import GitHub.Internal.Prelude
import Prelude ()
forksForR :: Name Owner -> Name Repo -> FetchCount -> Request k (Vector Repo)
forksForR :: Name Owner -> Name Repo -> FetchCount -> Request k (Vector Repo)
forksForR Name Owner
user Name Repo
repo =
Paths -> QueryString -> FetchCount -> Request k (Vector Repo)
forall a (mt :: RW).
FromJSON a =>
Paths -> QueryString -> FetchCount -> Request mt (Vector a)
pagedQuery [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
"forks"] []