Allow arrays to specify fields graphql_query_for

This commit is contained in:
Brett Walker 2019-04-08 14:02:22 -05:00
parent 7ae49f3c6c
commit 2c98d6eef1
2 changed files with 3 additions and 2 deletions

View File

@ -5,7 +5,7 @@ describe 'GitlabSchema configurations' do
it 'shows an error if complexity is too high' do
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

View File

@ -83,7 +83,8 @@ module GraphqlHelpers
end
def wrap_fields(fields)
return unless fields.strip.present?
fields = Array.wrap(fields).join("\n")
return unless fields.present?
<<~FIELDS
{