MCPcopy Create free account
hub / github.com/cli/cli / UnlinkProjectFromRepository

Method UnlinkProjectFromRepository

pkg/cmd/project/shared/queries/queries.go:1679–1689  ·  view source on GitHub ↗

UnlinkProjectFromRepository unlinks a project from a repository.

(projectID string, repoID string)

Source from the content-addressed store, hash-verified

1677
1678// UnlinkProjectFromRepository unlinks a project from a repository.
1679func (c *Client) UnlinkProjectFromRepository(projectID string, repoID string) error {
1680 var mutation unlinkProjectFromRepoMutation
1681 variables := map[string]any{
1682 "input": githubv4.UnlinkProjectV2FromRepositoryInput{
1683 ProjectID: githubv4.String(projectID),
1684 RepositoryID: githubv4.ID(repoID),
1685 },
1686 }
1687
1688 return c.Mutate("UnlinkProjectV2FromRepository", &mutation, variables)
1689}
1690
1691// UnlinkProjectFromTeam unlinks a project from a team.
1692func (c *Client) UnlinkProjectFromTeam(projectID string, teamID string) error {

Callers 1

unlinkRepoFunction · 0.80

Calls 3

MutateMethod · 0.95
StringMethod · 0.65
IDMethod · 0.65

Tested by

no test coverage detected