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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc/api
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-03-18 18:09:45 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-03-18 18:09:45 +0300
commitaaf59610548d9b0fd01acfd50e831cbe519ecba2 (patch)
treeb6505abedcd965ebae5118b504b185b63129dc4c /doc/api
parent1363ca12f1f07c634647cf55c4c16b7401098673 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/graphql/reference/gitlab_schema.graphql21
-rw-r--r--doc/api/graphql/reference/gitlab_schema.json48
-rw-r--r--doc/api/graphql/reference/index.md6
3 files changed, 67 insertions, 8 deletions
diff --git a/doc/api/graphql/reference/gitlab_schema.graphql b/doc/api/graphql/reference/gitlab_schema.graphql
index e3f988016fe..4c5bce005d5 100644
--- a/doc/api/graphql/reference/gitlab_schema.graphql
+++ b/doc/api/graphql/reference/gitlab_schema.graphql
@@ -776,11 +776,16 @@ type Design implements DesignFields & Noteable {
id: ID!
"""
- The URL of the image
+ The URL of the full-sized image
"""
image: String!
"""
+ The URL of the design resized to fit within the bounds of 432x230. This will be `null` if the image has not been generated
+ """
+ imageV432x230: String
+
+ """
The issue the design belongs to
"""
issue: Issue!
@@ -891,11 +896,16 @@ type DesignAtVersion implements DesignFields {
id: ID!
"""
- The URL of the image
+ The URL of the full-sized image
"""
image: String!
"""
+ The URL of the design resized to fit within the bounds of 432x230. This will be `null` if the image has not been generated
+ """
+ imageV432x230: String
+
+ """
The issue the design belongs to
"""
issue: Issue!
@@ -1144,11 +1154,16 @@ interface DesignFields {
id: ID!
"""
- The URL of the image
+ The URL of the full-sized image
"""
image: String!
"""
+ The URL of the design resized to fit within the bounds of 432x230. This will be `null` if the image has not been generated
+ """
+ imageV432x230: String
+
+ """
The issue the design belongs to
"""
issue: Issue!
diff --git a/doc/api/graphql/reference/gitlab_schema.json b/doc/api/graphql/reference/gitlab_schema.json
index 3d941d9cc69..94c0c17d218 100644
--- a/doc/api/graphql/reference/gitlab_schema.json
+++ b/doc/api/graphql/reference/gitlab_schema.json
@@ -2247,7 +2247,7 @@
},
{
"name": "image",
- "description": "The URL of the image",
+ "description": "The URL of the full-sized image",
"args": [
],
@@ -2264,6 +2264,20 @@
"deprecationReason": null
},
{
+ "name": "imageV432x230",
+ "description": "The URL of the design resized to fit within the bounds of 432x230. This will be `null` if the image has not been generated",
+ "args": [
+
+ ],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
"name": "issue",
"description": "The issue the design belongs to",
"args": [
@@ -2583,7 +2597,7 @@
},
{
"name": "image",
- "description": "The URL of the image",
+ "description": "The URL of the full-sized image",
"args": [
],
@@ -2600,6 +2614,20 @@
"deprecationReason": null
},
{
+ "name": "imageV432x230",
+ "description": "The URL of the design resized to fit within the bounds of 432x230. This will be `null` if the image has not been generated",
+ "args": [
+
+ ],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
"name": "issue",
"description": "The issue the design belongs to",
"args": [
@@ -3326,7 +3354,7 @@
},
{
"name": "image",
- "description": "The URL of the image",
+ "description": "The URL of the full-sized image",
"args": [
],
@@ -3343,6 +3371,20 @@
"deprecationReason": null
},
{
+ "name": "imageV432x230",
+ "description": "The URL of the design resized to fit within the bounds of 432x230. This will be `null` if the image has not been generated",
+ "args": [
+
+ ],
+ "type": {
+ "kind": "SCALAR",
+ "name": "String",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
"name": "issue",
"description": "The issue the design belongs to",
"args": [
diff --git a/doc/api/graphql/reference/index.md b/doc/api/graphql/reference/index.md
index 38067b275d5..a5eeab127d0 100644
--- a/doc/api/graphql/reference/index.md
+++ b/doc/api/graphql/reference/index.md
@@ -170,7 +170,8 @@ A single design
| `filename` | String! | The filename of the design |
| `fullPath` | String! | The full path to the design file |
| `id` | ID! | The ID of this design |
-| `image` | String! | The URL of the image |
+| `image` | String! | The URL of the full-sized image |
+| `imageV432x230` | String | The URL of the design resized to fit within the bounds of 432x230. This will be `null` if the image has not been generated |
| `issue` | Issue! | The issue the design belongs to |
| `notesCount` | Int! | The total count of user-created notes for this design |
| `project` | Project! | The project the design belongs to |
@@ -187,7 +188,8 @@ A design pinned to a specific version. The image field reflects the design as of
| `filename` | String! | The filename of the design |
| `fullPath` | String! | The full path to the design file |
| `id` | ID! | The ID of this design |
-| `image` | String! | The URL of the image |
+| `image` | String! | The URL of the full-sized image |
+| `imageV432x230` | String | The URL of the design resized to fit within the bounds of 432x230. This will be `null` if the image has not been generated |
| `issue` | Issue! | The issue the design belongs to |
| `notesCount` | Int! | The total count of user-created notes for this design |
| `project` | Project! | The project the design belongs to |