Welcome to mirror list, hosted at ThFree Co, Russian Federation.

lock_path.mutation.graphql « mutations « repository « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0851564bb24fce7667a1ab23d7f202731213d894 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mutation toggleLock($projectPath: ID!, $filePath: String!, $lock: Boolean!) {
  projectSetLocked(input: { projectPath: $projectPath, filePath: $filePath, lock: $lock }) {
    project {
      id
      pathLocks {
        nodes {
          id
          path
        }
      }
    }
    errors
  }
}