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

create_agent_token.mutation.graphql « mutations « graphql « clusters_list « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e93580cf416cc2b5acd194753d2da855de991c84 (plain)
1
2
3
4
5
6
7
8
9
mutation createClusterAgentToken($input: ClusterAgentTokenCreateInput!) {
  clusterAgentTokenCreate(input: $input) {
    secret
    token {
      id
    }
    errors
  }
}