When developing symfony code, or even in some cases if you are adding any on-save or workflow code that is triggered via a Suite8 Angular save you often get minimal debug response and when checking the graphql response in your browser developer tools you will see something like:
Internal Server error line 2 column 3 (itβs always the same and not helpful), server logs contain nothing at all. So what to do (Symphony here is helpful):
in .env.local
APP_DEBUG=true
then re-run your failing process, in the graphql response you will still see the internal server error, but you will be able to click open the folded tree and see an extensions and it will give you the full PHP error including trace and real line numbers etc.
Mark