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

create_new_agent_token.mutation.graphql « mutations « graphql « agents « clusters « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4a61263ba70ce9c3cc525f0b1ba6fc00ca90ba97 (plain)
1
2
3
4
5
6
7
8
9
10
11
#import "../fragments/cluster_agent_token.fragment.graphql"

mutation createNewAgentToken($input: ClusterAgentTokenCreateInput!) {
  clusterAgentTokenCreate(input: $input) {
    secret
    token {
      ...Token
    }
    errors
  }
}