The Arr facade import got removed at some point.
https://github.com/rebing/graphql-laravel/commit/0c749d564cb6b5ed7b955659aa23df7671217a2c#r33618736
yup, this import is missing in the current version, which breaks the package completely.
temporary fix: re-add it in src/Rebing/GraphQL/GraphQLController.php
<?php
namespace Rebing\GraphQL;
use Illuminate\Http\Request;
use Illuminate\Routing\Controller;
use Illuminate\Support\Arr;
10169b1
Most helpful comment
10169b1