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
ade086ac
Commit
ade086ac
authored
Aug 11, 2020
by
Vitali Tatarintev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix GraphQL query example indentation in specs
Use consistent indentation for query examples across GraphQL specs
parent
289cc8a8
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
78 additions
and
78 deletions
+78
-78
ee/spec/graphql/ee/types/group_type_spec.rb
ee/spec/graphql/ee/types/group_type_spec.rb
+1
-1
ee/spec/graphql/types/project_type_spec.rb
ee/spec/graphql/types/project_type_spec.rb
+9
-9
ee/spec/graphql/types/vulnerability_type_spec.rb
ee/spec/graphql/types/vulnerability_type_spec.rb
+1
-1
ee/spec/requests/api/graphql/epics/epic_resolver_spec.rb
ee/spec/requests/api/graphql/epics/epic_resolver_spec.rb
+7
-7
ee/spec/requests/api/graphql/project/pipeline/security_report_summary_spec.rb
.../graphql/project/pipeline/security_report_summary_spec.rb
+2
-2
ee/spec/requests/api/graphql/project/vulnerability_severities_count_spec.rb
...pi/graphql/project/vulnerability_severities_count_spec.rb
+1
-1
spec/graphql/types/issue_type_spec.rb
spec/graphql/types/issue_type_spec.rb
+6
-6
spec/graphql/types/project_type_spec.rb
spec/graphql/types/project_type_spec.rb
+29
-29
spec/graphql/types/snippets/blob_viewer_type_spec.rb
spec/graphql/types/snippets/blob_viewer_type_spec.rb
+2
-2
spec/requests/api/graphql/metrics/dashboard/annotations_spec.rb
...equests/api/graphql/metrics/dashboard/annotations_spec.rb
+11
-11
spec/requests/api/graphql/project/jira_import_spec.rb
spec/requests/api/graphql/project/jira_import_spec.rb
+2
-2
spec/requests/api/graphql/project_query_spec.rb
spec/requests/api/graphql/project_query_spec.rb
+7
-7
No files found.
ee/spec/graphql/ee/types/group_type_spec.rb
View file @
ade086ac
...
...
@@ -38,7 +38,7 @@ RSpec.describe GitlabSchema.types['Group'] do
let_it_be
(
:query
)
do
%(
query {
group(fullPath:"#{group.full_path}") {
group(fullPath:
"#{group.full_path}") {
name
vulnerabilities {
nodes {
...
...
ee/spec/graphql/types/project_type_spec.rb
View file @
ade086ac
...
...
@@ -31,14 +31,14 @@ RSpec.describe GitlabSchema.types['Project'] do
let_it_be
(
:query
)
do
%(
query {
project(fullPath: "#{project.full_path}") {
securityScanners {
enabled
available
pipelineRun
}
}
}
project(fullPath: "#{project.full_path}") {
securityScanners {
enabled
available
pipelineRun
}
}
}
)
end
...
...
@@ -74,7 +74,7 @@ RSpec.describe GitlabSchema.types['Project'] do
let_it_be
(
:query
)
do
%(
query {
project(fullPath:"#{project.full_path}") {
project(fullPath:
"#{project.full_path}") {
vulnerabilities {
nodes {
title
...
...
ee/spec/graphql/types/vulnerability_type_spec.rb
View file @
ade086ac
...
...
@@ -26,7 +26,7 @@ RSpec.describe GitlabSchema.types['Vulnerability'] do
let
(
:query
)
do
%(
query {
project(fullPath:"#{project.full_path}") {
project(fullPath:
"#{project.full_path}") {
name
vulnerabilities {
nodes {
...
...
ee/spec/requests/api/graphql/epics/epic_resolver_spec.rb
View file @
ade086ac
...
...
@@ -91,16 +91,16 @@ RSpec.describe 'getting epics information' do
field_queries
=
args
.
map
{
|
key
,
value
|
"
#{
key
}
:
\"
#{
value
}
\"
"
}.
join
(
','
)
<<~
QUERY
query {
group(fullPath:"
#{
group
.
full_path
}
") {
id,
epics(
#{
field_queries
}
) {
nodes {
id
}
query {
group(fullPath: "
#{
group
.
full_path
}
") {
id,
epics(
#{
field_queries
}
) {
nodes {
id
}
}
}
}
QUERY
end
...
...
ee/spec/requests/api/graphql/project/pipeline/security_report_summary_spec.rb
View file @
ade086ac
...
...
@@ -20,8 +20,8 @@ RSpec.describe 'Query.project(fullPath).pipeline(iid).securityReportSummary' do
let_it_be
(
:query
)
do
%(
query {
project(fullPath:"#{project.full_path}") {
pipeline(iid:"#{pipeline.iid}") {
project(fullPath:
"#{project.full_path}") {
pipeline(iid:
"#{pipeline.iid}") {
securityReportSummary {
dast {
scannedResourcesCount
...
...
ee/spec/requests/api/graphql/project/vulnerability_severities_count_spec.rb
View file @
ade086ac
...
...
@@ -10,7 +10,7 @@ RSpec.describe 'Query.project(fullPath).vulnerabilitySeveritiesCount' do
let_it_be
(
:query
)
do
%(
query {
project(fullPath:"#{project.full_path}") {
project(fullPath:
"#{project.full_path}") {
vulnerabilitySeveritiesCount {
high
}
...
...
spec/graphql/types/issue_type_spec.rb
View file @
ade086ac
...
...
@@ -132,14 +132,14 @@ RSpec.describe GitlabSchema.types['Issue'] do
let
(
:query
)
do
%(
query {
project(fullPath:
"#{project.full_path}")
{
issue(iid:
"#{issue.iid}")
{
project(fullPath:
"#{project.full_path}")
{
issue(iid:
"#{issue.iid}")
{
descriptionHtml
notes{
edges{
node{
notes
{
edges
{
node
{
bodyHtml
author{
author
{
username
}
body
...
...
spec/graphql/types/project_type_spec.rb
View file @
ade086ac
...
...
@@ -148,47 +148,47 @@ RSpec.describe GitlabSchema.types['Project'] do
let_it_be
(
:query
)
do
%(
query {
project(fullPath: "#{project.full_path}") {
sastCiConfiguration {
global {
project(fullPath: "#{project.full_path}") {
sastCiConfiguration {
global {
nodes {
type
options {
nodes {
type
options {
nodes {
label
value
}
}
field
label
defaultValue
value
}
}
pipeline {
field
label
defaultValue
value
}
}
pipeline {
nodes {
type
options {
nodes {
type
options {
nodes {
label
value
}
}
field
label
defaultValue
value
}
}
analyzers {
nodes {
name
label
enabled
}
}
field
label
defaultValue
value
}
}
analyzers {
nodes {
name
label
enabled
}
}
}
}
}
)
end
...
...
spec/graphql/types/snippets/blob_viewer_type_spec.rb
View file @
ade086ac
...
...
@@ -44,7 +44,7 @@ RSpec.describe GitlabSchema.types['SnippetBlobViewer'] do
let
(
:query
)
do
%(
query {
snippets(ids:
"#{snippet.to_global_id}")
{
snippets(ids:
"#{snippet.to_global_id}")
{
edges {
node {
blob {
...
...
@@ -70,7 +70,7 @@ RSpec.describe GitlabSchema.types['SnippetBlobViewer'] do
let
(
:query
)
do
%(
query {
snippets(ids:
"#{snippet.to_global_id}")
{
snippets(ids:
"#{snippet.to_global_id}")
{
edges {
node {
blob {
...
...
spec/requests/api/graphql/metrics/dashboard/annotations_spec.rb
View file @
ade086ac
...
...
@@ -30,22 +30,22 @@ RSpec.describe 'Getting Metrics Dashboard Annotations' do
let
(
:query
)
do
%(
query {
project(fullPath:"#{project.full_path}") {
environments(name: "#{environment.name}") {
nodes {
metricsDashboard(path: "#{path}"){
annotations(#{args}){
nodes {
#{fields}
}
}
query {
project(fullPath: "#{project.full_path}") {
environments(name: "#{environment.name}") {
nodes {
metricsDashboard(path: "#{path}") {
annotations(#{args}) {
nodes {
#{fields}
}
}
}
}
}
)
}
}
)
end
before
do
...
...
spec/requests/api/graphql/project/jira_import_spec.rb
View file @
ade086ac
...
...
@@ -107,7 +107,7 @@ RSpec.describe 'query Jira import data' do
let
(
:query
)
do
%(
query {
project(fullPath:"#{project.full_path}") {
project(fullPath:
"#{project.full_path}") {
jiraImports(first: 1) {
nodes {
jiraProjectKey
...
...
@@ -133,7 +133,7 @@ RSpec.describe 'query Jira import data' do
let
(
:query
)
do
%(
query {
project(fullPath:"#{project.full_path}") {
project(fullPath:
"#{project.full_path}") {
jiraImports(last: 1) {
nodes {
jiraProjectKey
...
...
spec/requests/api/graphql/project_query_spec.rb
View file @
ade086ac
...
...
@@ -76,16 +76,16 @@ RSpec.describe 'getting project information' do
def
run_query
(
number
)
q
=
<<~
GQL
query {
project(fullPath: "
#{
project
.
full_path
}
") {
mergeRequests(first:
#{
number
}
) {
nodes {
assignees { nodes { username } }
headPipeline { status }
query {
project(fullPath: "
#{
project
.
full_path
}
") {
mergeRequests(first:
#{
number
}
) {
nodes {
assignees { nodes { username } }
headPipeline { status }
}
}
}
}
}
GQL
post_graphql
(
q
,
current_user:
current_user
)
...
...
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