summaryrefslogtreecommitdiff
path: root/doc/api
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-03-30 09:07:58 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-03-30 09:07:58 +0000
commit45b4df3e57c949c88107840c44ccbfaf2eabdf26 (patch)
treef73c1533a75b03d2ceb1361644e0d8ab97568a8f /doc/api
parent7421e6f9f2b5889b05738af7eba568af6ae3fcbc (diff)
downloadgitlab-ce-45b4df3e57c949c88107840c44ccbfaf2eabdf26.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/graphql/reference/gitlab_schema.graphql26
-rw-r--r--doc/api/graphql/reference/gitlab_schema.json26
-rw-r--r--doc/api/graphql/reference/index.md26
3 files changed, 39 insertions, 39 deletions
diff --git a/doc/api/graphql/reference/gitlab_schema.graphql b/doc/api/graphql/reference/gitlab_schema.graphql
index 2f1b902825a..12da6728d03 100644
--- a/doc/api/graphql/reference/gitlab_schema.graphql
+++ b/doc/api/graphql/reference/gitlab_schema.graphql
@@ -6695,37 +6695,37 @@ type ProjectStatistics {
"""
Build artifacts size of the project
"""
- buildArtifactsSize: Int!
+ buildArtifactsSize: Float!
"""
Commit count of the project
"""
- commitCount: Int!
+ commitCount: Float!
"""
Large File Storage (LFS) object size of the project
"""
- lfsObjectsSize: Int!
+ lfsObjectsSize: Float!
"""
Packages size of the project
"""
- packagesSize: Int!
+ packagesSize: Float!
"""
Repository size of the project
"""
- repositorySize: Int!
+ repositorySize: Float!
"""
Storage size of the project
"""
- storageSize: Int!
+ storageSize: Float!
"""
Wiki size of the project
"""
- wikiSize: Int
+ wikiSize: Float
}
type Query {
@@ -7059,32 +7059,32 @@ type RootStorageStatistics {
"""
The CI artifacts size in bytes
"""
- buildArtifactsSize: Int!
+ buildArtifactsSize: Float!
"""
The LFS objects size in bytes
"""
- lfsObjectsSize: Int!
+ lfsObjectsSize: Float!
"""
The packages size in bytes
"""
- packagesSize: Int!
+ packagesSize: Float!
"""
The Git repository size in bytes
"""
- repositorySize: Int!
+ repositorySize: Float!
"""
The total storage in bytes
"""
- storageSize: Int!
+ storageSize: Float!
"""
The wiki size in bytes
"""
- wikiSize: Int!
+ wikiSize: Float!
}
"""
diff --git a/doc/api/graphql/reference/gitlab_schema.json b/doc/api/graphql/reference/gitlab_schema.json
index aebd9131f3d..13e506fcb6c 100644
--- a/doc/api/graphql/reference/gitlab_schema.json
+++ b/doc/api/graphql/reference/gitlab_schema.json
@@ -20104,7 +20104,7 @@
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "Float",
"ofType": null
}
},
@@ -20122,7 +20122,7 @@
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "Float",
"ofType": null
}
},
@@ -20140,7 +20140,7 @@
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "Float",
"ofType": null
}
},
@@ -20158,7 +20158,7 @@
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "Float",
"ofType": null
}
},
@@ -20176,7 +20176,7 @@
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "Float",
"ofType": null
}
},
@@ -20194,7 +20194,7 @@
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "Float",
"ofType": null
}
},
@@ -20209,7 +20209,7 @@
],
"type": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "Float",
"ofType": null
},
"isDeprecated": false,
@@ -21203,7 +21203,7 @@
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "Float",
"ofType": null
}
},
@@ -21221,7 +21221,7 @@
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "Float",
"ofType": null
}
},
@@ -21239,7 +21239,7 @@
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "Float",
"ofType": null
}
},
@@ -21257,7 +21257,7 @@
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "Float",
"ofType": null
}
},
@@ -21275,7 +21275,7 @@
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "Float",
"ofType": null
}
},
@@ -21293,7 +21293,7 @@
"name": null,
"ofType": {
"kind": "SCALAR",
- "name": "Int",
+ "name": "Float",
"ofType": null
}
},
diff --git a/doc/api/graphql/reference/index.md b/doc/api/graphql/reference/index.md
index dc3638dc7bc..6b7c4925238 100644
--- a/doc/api/graphql/reference/index.md
+++ b/doc/api/graphql/reference/index.md
@@ -979,13 +979,13 @@ Information about pagination in a connection.
| Name | Type | Description |
| --- | ---- | ---------- |
-| `buildArtifactsSize` | Int! | Build artifacts size of the project |
-| `commitCount` | Int! | Commit count of the project |
-| `lfsObjectsSize` | Int! | Large File Storage (LFS) object size of the project |
-| `packagesSize` | Int! | Packages size of the project |
-| `repositorySize` | Int! | Repository size of the project |
-| `storageSize` | Int! | Storage size of the project |
-| `wikiSize` | Int | Wiki size of the project |
+| `buildArtifactsSize` | Float! | Build artifacts size of the project |
+| `commitCount` | Float! | Commit count of the project |
+| `lfsObjectsSize` | Float! | Large File Storage (LFS) object size of the project |
+| `packagesSize` | Float! | Packages size of the project |
+| `repositorySize` | Float! | Repository size of the project |
+| `storageSize` | Float! | Storage size of the project |
+| `wikiSize` | Float | Wiki size of the project |
## RemoveAwardEmojiPayload
@@ -1047,12 +1047,12 @@ Counts of requirements by their state.
| Name | Type | Description |
| --- | ---- | ---------- |
-| `buildArtifactsSize` | Int! | The CI artifacts size in bytes |
-| `lfsObjectsSize` | Int! | The LFS objects size in bytes |
-| `packagesSize` | Int! | The packages size in bytes |
-| `repositorySize` | Int! | The Git repository size in bytes |
-| `storageSize` | Int! | The total storage in bytes |
-| `wikiSize` | Int! | The wiki size in bytes |
+| `buildArtifactsSize` | Float! | The CI artifacts size in bytes |
+| `lfsObjectsSize` | Float! | The LFS objects size in bytes |
+| `packagesSize` | Float! | The packages size in bytes |
+| `repositorySize` | Float! | The Git repository size in bytes |
+| `storageSize` | Float! | The total storage in bytes |
+| `wikiSize` | Float! | The wiki size in bytes |
## SentryDetailedError