$args * @param \Nuwave\Lighthouse\Support\Contracts\GraphQLContext $context * @param \GraphQL\Type\Definition\ResolveInfo $resolveInfo * @return mixed */ public function resolve($root, array $args, GraphQLContext $context, ResolveInfo $resolveInfo): Model { // Optionally manipulate the `$root` item before it gets broadcasted to // subscribed client(s). $root->load(); return $root; } }