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

remove_validation_error.mutation.graphql « mutations « graphql « import_groups « import_entities « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 940bf4dfaac03dca248ad5874067c7bef64dd474 (plain)
1
2
3
4
5
6
7
8
9
mutation removeValidationError($sourceGroupId: String!, $field: String!) {
  removeValidationError(sourceGroupId: $sourceGroupId, field: $field) @client {
    id
    validation_errors {
      field
      message
    }
  }
}