Christian Leo-Pernold
Christian Leo-Pernold
I had the exact same problem. Did you set `AUTH_DRIVER` in your `.env` file? Laravel 5.6 introduced a new ENV variable IIRC. ```php 'providers' => [ 'users' => [ 'driver'...
> Technically, this can be done by constraining the `SELECT` to the requested fields. The fourth resolver argument `ResolveInfo` can be used to know which fields a client selected. >...
> ``` > public function __invoke($root, array $args, GraphQLContext $context, ResolveInfo $resolveInfo) > { > $resolveInfo->getFieldSelection(); > $resolveInfo->lookAhead(); > // TODO use the information from those methods to SELECT only...
Awesome, thanks!