mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-04-04 05:03:31 +03:00
php merge for associative array non-integer intexed
This commit is contained in:
parent
f77bd17eba
commit
51e67d49c7
1 changed files with 2 additions and 2 deletions
|
@ -136,10 +136,10 @@ class ResolveInfo
|
|||
if (isset($this->fragments[$spreadName])) {
|
||||
/** @var FragmentDefinitionNode $fragment */
|
||||
$fragment = $this->fragments[$spreadName];
|
||||
$fields += $this->foldSelectionSet($fragment->selectionSet, $descend);
|
||||
$fields = array_merge_recursive($this->foldSelectionSet($fragment->selectionSet, $descend), $fields);
|
||||
}
|
||||
} else if ($selectionNode instanceof InlineFragmentNode) {
|
||||
$fields += $this->foldSelectionSet($selectionNode->selectionSet, $descend);
|
||||
$fields = array_merge_recursive($this->foldSelectionSet($selectionNode->selectionSet, $descend), $fields);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue