Commit e1e717c8 authored by Evan Read's avatar Evan Read

Merge branch 'cablett_disambiguate_tags' into 'master'

Disambiguate `Tag` in GraphQL API docs

See merge request gitlab-org/gitlab!29754
parents 8f4563a8 ede7d90a
...@@ -26,7 +26,7 @@ module Types ...@@ -26,7 +26,7 @@ module Types
markdown_field :description_html, null: true markdown_field :description_html, null: true
field :tag_list, GraphQL::STRING_TYPE, null: true, field :tag_list, GraphQL::STRING_TYPE, null: true,
description: 'List of project tags' description: 'List of project topics (not Git tags)'
field :ssh_url_to_repo, GraphQL::STRING_TYPE, null: true, field :ssh_url_to_repo, GraphQL::STRING_TYPE, null: true,
description: 'URL to connect to the project via SSH' description: 'URL to connect to the project via SSH'
......
...@@ -6842,7 +6842,7 @@ type Project { ...@@ -6842,7 +6842,7 @@ type Project {
suggestionCommitMessage: String suggestionCommitMessage: String
""" """
List of project tags List of project topics (not Git tags)
""" """
tagList: String tagList: String
......
...@@ -20382,7 +20382,7 @@ ...@@ -20382,7 +20382,7 @@
}, },
{ {
"name": "tagList", "name": "tagList",
"description": "List of project tags", "description": "List of project topics (not Git tags)",
"args": [ "args": [
], ],
......
...@@ -995,7 +995,7 @@ Information about pagination in a connection. ...@@ -995,7 +995,7 @@ Information about pagination in a connection.
| `starCount` | Int! | Number of times the project has been starred | | `starCount` | Int! | Number of times the project has been starred |
| `statistics` | ProjectStatistics | Statistics of the project | | `statistics` | ProjectStatistics | Statistics of the project |
| `suggestionCommitMessage` | String | The commit message used to apply merge request suggestions | | `suggestionCommitMessage` | String | The commit message used to apply merge request suggestions |
| `tagList` | String | List of project tags | | `tagList` | String | List of project topics (not Git tags) |
| `userPermissions` | ProjectPermissions! | Permissions for the current user on the resource | | `userPermissions` | ProjectPermissions! | Permissions for the current user on the resource |
| `visibility` | String | Visibility of the project | | `visibility` | String | Visibility of the project |
| `vulnerabilitySeveritiesCount` | VulnerabilitySeveritiesCount | Counts for each severity of vulnerability of the project. Available only when feature flag `first_class_vulnerabilities` is enabled | | `vulnerabilitySeveritiesCount` | VulnerabilitySeveritiesCount | Counts for each severity of vulnerability of the project. Available only when feature flag `first_class_vulnerabilities` is enabled |
......
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