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

add_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: d95c460c0468942eaa24fb6c2a9e54252f35f87d (plain)
1
2
3
4
5
6
7
8
9
mutation addValidationError($sourceGroupId: String!, $field: String!, $message: String!) {
  addValidationError(sourceGroupId: $sourceGroupId, field: $field, message: $message) @client {
    id
    validation_errors {
      field
      message
    }
  }
}