Function: forge--fetch-organization-repos

forge--fetch-organization-repos is a byte-compiled function defined in forge-github.el.

Signature

(forge--fetch-organization-repos ARG &rest ARGS)

Implementations

(forge--fetch-organization-repos (_ (subclass forge-github-repository)) HOST ORG CALLBACK) in `forge-github.el'.

Undocumented

Source Code

;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-github.el
(cl-defmethod forge--fetch-organization-repos
  ((_ (subclass forge-github-repository)) host org callback)
  (forge-query host
    (organization [(login $login String!)]
                  (repositories [(:edges t)] name))
    ((login org))
    :callback (lambda (d)
                (funcall callback
                         (mapcar (##alist-get 'name %)
                                 (let-alist d .organization.repositories))))))