Commit 61cfd522 authored by Scott Hampton's avatar Scott Hampton

Fix graphql schema doc typo

Remove an unnecessary `s` from the graphql
schema documentation.
parent 9edd98f0
...@@ -14906,7 +14906,7 @@ type Project { ...@@ -14906,7 +14906,7 @@ type Project {
): ClusterAgentConnection ): ClusterAgentConnection
""" """
Code coverages summary associated with the project Code coverage summary associated with the project
""" """
codeCoverageSummary: CodeCoverageSummary codeCoverageSummary: CodeCoverageSummary
......
...@@ -43989,7 +43989,7 @@ ...@@ -43989,7 +43989,7 @@
}, },
{ {
"name": "codeCoverageSummary", "name": "codeCoverageSummary",
"description": "Code coverages summary associated with the project", "description": "Code coverage summary associated with the project",
"args": [ "args": [
], ],
...@@ -2248,7 +2248,7 @@ Autogenerated return type of PipelineRetry. ...@@ -2248,7 +2248,7 @@ Autogenerated return type of PipelineRetry.
| `boards` | BoardConnection | Boards of the project | | `boards` | BoardConnection | Boards of the project |
| `clusterAgent` | ClusterAgent | Find a single cluster agent by name | | `clusterAgent` | ClusterAgent | Find a single cluster agent by name |
| `clusterAgents` | ClusterAgentConnection | Cluster agents associated with the project | | `clusterAgents` | ClusterAgentConnection | Cluster agents associated with the project |
| `codeCoverageSummary` | CodeCoverageSummary | Code coverages summary associated with the project | | `codeCoverageSummary` | CodeCoverageSummary | Code coverage summary associated with the project |
| `complianceFrameworks` | ComplianceFrameworkConnection | Compliance frameworks associated with the project | | `complianceFrameworks` | ComplianceFrameworkConnection | Compliance frameworks associated with the project |
| `containerExpirationPolicy` | ContainerExpirationPolicy | The container expiration policy of the project | | `containerExpirationPolicy` | ContainerExpirationPolicy | The container expiration policy of the project |
| `containerRegistryEnabled` | Boolean | Indicates if the project stores Docker container images in a container registry | | `containerRegistryEnabled` | Boolean | Indicates if the project stores Docker container images in a container registry |
......
...@@ -145,7 +145,7 @@ module EE ...@@ -145,7 +145,7 @@ module EE
field :code_coverage_summary, field :code_coverage_summary,
::Types::Ci::CodeCoverageSummaryType, ::Types::Ci::CodeCoverageSummaryType,
null: true, null: true,
description: 'Code coverages summary associated with the project', description: 'Code coverage summary associated with the project',
resolver: ::Resolvers::Ci::CodeCoverageSummaryResolver resolver: ::Resolvers::Ci::CodeCoverageSummaryResolver
def self.sast_ci_configuration(project) def self.sast_ci_configuration(project)
......
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