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 :: forall (k :: RW).
Name Owner -> Name Repo -> FetchCount -> Request k (Vector Repo)
forksForR Name Owner
user Name Repo
repo =
forall a (mt :: RW).
FromJSON a =>
Paths -> QueryString -> FetchCount -> Request mt (Vector a)
pagedQuery [Text
"repos", forall a. IsPathPart a => a -> Text
toPathPart Name Owner
user, forall a. IsPathPart a => a -> Text
toPathPart Name Repo
repo, Text
"forks"] []