MCPcopy Index your code
hub / github.com/cli/cli / UnlinkProjectFromRepository

Method UnlinkProjectFromRepository

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

UnlinkProjectFromRepository unlinks a project from a repository.

(projectID string, repoID string)

Source from the content-addressed store, hash-verified

1639
1640// UnlinkProjectFromRepository unlinks a project from a repository.
1641func (c *Client) UnlinkProjectFromRepository(projectID string, repoID string) error {
1642 var mutation unlinkProjectFromRepoMutation
1643 variables := map[string]interface{}{
1644 "input": githubv4.UnlinkProjectV2FromRepositoryInput{
1645 ProjectID: githubv4.String(projectID),
1646 RepositoryID: githubv4.ID(repoID),
1647 },
1648 }
1649
1650 return c.Mutate("UnlinkProjectV2FromRepository", &mutation, variables)
1651}
1652
1653// UnlinkProjectFromTeam unlinks a project from a team.
1654func (c *Client) UnlinkProjectFromTeam(projectID string, teamID string) error {

Callers 1

unlinkRepoFunction · 0.80

Calls 3

MutateMethod · 0.95
IDMethod · 0.65
StringMethod · 0.45

Tested by

no test coverage detected