Commit 2c98d6ee authored by Brett Walker's avatar Brett Walker

Allow arrays to specify fields graphql_query_for

parent 7ae49f3c
...@@ -5,7 +5,7 @@ describe 'GitlabSchema configurations' do ...@@ -5,7 +5,7 @@ describe 'GitlabSchema configurations' do
it 'shows an error if complexity is too high' do it 'shows an error if complexity is too high' do
project = create(:project, :repository) project = create(:project, :repository)
query = graphql_query_for('project', { 'fullPath' => project.full_path }, "id\nname\ndescription") query = graphql_query_for('project', { 'fullPath' => project.full_path }, %w(id name description))
allow(GitlabSchema).to receive(:max_query_complexity).and_return 1 allow(GitlabSchema).to receive(:max_query_complexity).and_return 1
......
...@@ -83,7 +83,8 @@ module GraphqlHelpers ...@@ -83,7 +83,8 @@ module GraphqlHelpers
end end
def wrap_fields(fields) def wrap_fields(fields)
return unless fields.strip.present? fields = Array.wrap(fields).join("\n")
return unless fields.present?
<<~FIELDS <<~FIELDS
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment