Describe the bug
I have made changes to my schema.graphql file and I am unable to get it to update when accessing using graphql-playground (it always uses the very first definition
Expected behavior/Solution
I am not sure how to refresh the schema, always uses the first definition, I have restarted the server, cleared browser cache, tried incognito, etc.


I managed to find the issue, had to change the cache value to false. And found artisan command lighthouse:clear-cache I had a helluva time find this in the documenation, would be nice to document this as part of examples
'cache' => [
'enable' => env('LIGHTHOUSE_CACHE_ENABLE', false),
'key' => env('LIGHTHOUSE_CACHE_KEY', 'lighthouse-schema'),
'ttl' => env('LIGHTHOUSE_CACHE_TTL', null),
],
Open to PR's to the docs if you can identify a place where we should put that information.
I managed to find the issue, had to change the
cachevalue tofalse. And found artisan commandlighthouse:clear-cacheI had a helluva time find this in the documenation, would be nice to document this as part of examples'cache' => [ 'enable' => env('LIGHTHOUSE_CACHE_ENABLE', false), 'key' => env('LIGHTHOUSE_CACHE_KEY', 'lighthouse-schema'), 'ttl' => env('LIGHTHOUSE_CACHE_TTL', null), ],
Worked for me, thanks!
Most helpful comment
I managed to find the issue, had to change the
cachevalue tofalse. And found artisan commandlighthouse:clear-cacheI had a helluva time find this in the documenation, would be nice to document this as part of examples