Commit 519e16f6 authored by Patrick Joyce's avatar Patrick Joyce

Update graphql api docs for unsetting compliance framework

run bundle exec rake gitlab:graphql:compile_docs
parent 97153f9b
...@@ -3757,7 +3757,7 @@ Input type: `ProjectSetComplianceFrameworkInput` ...@@ -3757,7 +3757,7 @@ Input type: `ProjectSetComplianceFrameworkInput`
| Name | Type | Description | | Name | Type | Description |
| ---- | ---- | ----------- | | ---- | ---- | ----------- |
| <a id="mutationprojectsetcomplianceframeworkclientmutationid"></a>`clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | <a id="mutationprojectsetcomplianceframeworkclientmutationid"></a>`clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| <a id="mutationprojectsetcomplianceframeworkcomplianceframeworkid"></a>`complianceFrameworkId` | [`ComplianceManagementFrameworkID`](#compliancemanagementframeworkid) | ID of the compliance framework to assign to the project. | | <a id="mutationprojectsetcomplianceframeworkcomplianceframeworkid"></a>`complianceFrameworkId` | [`ComplianceManagementFrameworkID`](#compliancemanagementframeworkid) | ID of the compliance framework to assign to the project. Set to `null` to unset. |
| <a id="mutationprojectsetcomplianceframeworkprojectid"></a>`projectId` | [`ProjectID!`](#projectid) | ID of the project to change the compliance framework of. | | <a id="mutationprojectsetcomplianceframeworkprojectid"></a>`projectId` | [`ProjectID!`](#projectid) | ID of the project to change the compliance framework of. |
#### Fields #### Fields
...@@ -14,7 +14,7 @@ module Mutations ...@@ -14,7 +14,7 @@ module Mutations
argument :compliance_framework_id, Types::GlobalIDType[::ComplianceManagement::Framework], argument :compliance_framework_id, Types::GlobalIDType[::ComplianceManagement::Framework],
required: false, required: false,
description: 'ID of the compliance framework to assign to the project.' description: 'ID of the compliance framework to assign to the project. Set to `null` to unset.'
field :project, field :project,
Types::ProjectType, Types::ProjectType,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment