Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
f291416a
Commit
f291416a
authored
May 07, 2020
by
Evan Read
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix capitalization of ID in GraphQL types
parent
8a0faf4f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
app/graphql/types/snippet_type.rb
app/graphql/types/snippet_type.rb
+1
-1
app/graphql/types/todo_type.rb
app/graphql/types/todo_type.rb
+1
-1
doc/api/graphql/reference/gitlab_schema.graphql
doc/api/graphql/reference/gitlab_schema.graphql
+2
-2
doc/api/graphql/reference/gitlab_schema.json
doc/api/graphql/reference/gitlab_schema.json
+2
-2
doc/api/graphql/reference/index.md
doc/api/graphql/reference/index.md
+2
-2
No files found.
app/graphql/types/snippet_type.rb
View file @
f291416a
...
...
@@ -14,7 +14,7 @@ module Types
expose_permissions
Types
::
PermissionTypes
::
Snippet
field
:id
,
GraphQL
::
ID_TYPE
,
description:
'I
d
of the snippet'
,
description:
'I
D
of the snippet'
,
null:
false
field
:title
,
GraphQL
::
STRING_TYPE
,
...
...
app/graphql/types/todo_type.rb
View file @
f291416a
...
...
@@ -10,7 +10,7 @@ module Types
authorize
:read_todo
field
:id
,
GraphQL
::
ID_TYPE
,
description:
'I
d
of the todo'
,
description:
'I
D
of the todo'
,
null:
false
field
:project
,
Types
::
ProjectType
,
...
...
doc/api/graphql/reference/gitlab_schema.graphql
View file @
f291416a
...
...
@@ -9017,7 +9017,7 @@ type Snippet implements Noteable {
httpUrlToRepo
:
String
"""
I
d
of
the
snippet
I
D
of
the
snippet
"""
id
:
ID
!
...
...
@@ -9463,7 +9463,7 @@ type Todo {
group
:
Group
"""
I
d
of
the
todo
I
D
of
the
todo
"""
id
:
ID
!
...
...
doc/api/graphql/reference/gitlab_schema.json
View file @
f291416a
...
...
@@ -26985,7 +26985,7 @@
},
{
"name"
:
"id"
,
"description"
:
"I
d
of the snippet"
,
"description"
:
"I
D
of the snippet"
,
"args"
:
[
],
...
...
@@ -28412,7 +28412,7 @@
},
{
"name"
:
"id"
,
"description"
:
"I
d
of the todo"
,
"description"
:
"I
D
of the todo"
,
"args"
:
[
],
...
...
doc/api/graphql/reference/index.md
View file @
f291416a
...
...
@@ -1365,7 +1365,7 @@ Represents a snippet entry
|
`descriptionHtml`
| String | The GitLab Flavored Markdown rendering of
`description`
|
|
`fileName`
| String | File Name of the snippet |
|
`httpUrlToRepo`
| String | HTTP URL to the snippet repository |
|
`id`
| ID! | I
d
of the snippet |
|
`id`
| ID! | I
D
of the snippet |
|
`project`
| Project | The project the snippet is associated with |
|
`rawUrl`
| String! | Raw URL of the snippet |
|
`sshUrlToRepo`
| String | SSH URL to the snippet repository |
...
...
@@ -1460,7 +1460,7 @@ Representing a todo entry
|
`body`
| String! | Body of the todo |
|
`createdAt`
| Time! | Timestamp this todo was created |
|
`group`
| Group | Group this todo is associated with |
|
`id`
| ID! | I
d
of the todo |
|
`id`
| ID! | I
D
of the todo |
|
`project`
| Project | The project this todo is associated with |
|
`state`
| TodoStateEnum! | State of the todo |
|
`targetType`
| TodoTargetEnum! | Target type of the todo |
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment