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
f8ce40e9
Commit
f8ce40e9
authored
Aug 26, 2021
by
Phil Hughes
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '338420-add-missing-ids' into 'master'
Add missing GraphQL ids See merge request gitlab-org/gitlab!68948
parents
203638a4
2ca888d7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
0 deletions
+3
-0
app/graphql/queries/repository/files.query.graphql
app/graphql/queries/repository/files.query.graphql
+1
-0
app/graphql/queries/repository/path_last_commit.query.graphql
...graphql/queries/repository/path_last_commit.query.graphql
+1
-0
app/graphql/queries/repository/permissions.query.graphql
app/graphql/queries/repository/permissions.query.graphql
+1
-0
No files found.
app/graphql/queries/repository/files.query.graphql
View file @
f8ce40e9
...
@@ -23,6 +23,7 @@ query getFiles(
...
@@ -23,6 +23,7 @@ query getFiles(
$nextPageCursor
:
String
$nextPageCursor
:
String
)
{
)
{
project
(
fullPath
:
$projectPath
)
{
project
(
fullPath
:
$projectPath
)
{
id
__typename
__typename
repository
{
repository
{
__typename
__typename
...
...
app/graphql/queries/repository/path_last_commit.query.graphql
View file @
f8ce40e9
query
pathLastCommit
(
$projectPath
:
ID
!,
$path
:
String
,
$ref
:
String
!)
{
query
pathLastCommit
(
$projectPath
:
ID
!,
$path
:
String
,
$ref
:
String
!)
{
project
(
fullPath
:
$projectPath
)
{
project
(
fullPath
:
$projectPath
)
{
id
__typename
__typename
repository
{
repository
{
__typename
__typename
...
...
app/graphql/queries/repository/permissions.query.graphql
View file @
f8ce40e9
query
getPermissions
(
$projectPath
:
ID
!)
{
query
getPermissions
(
$projectPath
:
ID
!)
{
project
(
fullPath
:
$projectPath
)
{
project
(
fullPath
:
$projectPath
)
{
id
__typename
__typename
userPermissions
{
userPermissions
{
__typename
__typename
...
...
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