API Platform version(s) affected:
```composer.json
"api-platform/api-pack": "^1.1",
"webonyx/graphql-php": "^14.0"
**Description**
<!-- A clear and concise description of the problem. -->
When I want to run the GraphQL playground I get the error below:
"type": "https://tools.ietf.org/html/rfc2616#section-10",
"title": "An error occurred",
"detail": "Attempted to load class \"Debug\" from namespace \"GraphQL\\Error\".\nDid you forget a \"use\" statement for e.g. \"Symfony\\Component\\ErrorHandler\\Debug\" or \"Doctrine\\Common\\Util\\Debug\"?",
"trace": [
{
"namespace": "",
"short_class": "",
"class": "",
"type": "",
"function": "",
"file": "/srv/api/vendor/api-platform/core/src/GraphQl/Action/EntrypointAction.php",
"line": 49,
"args": []
},
**Possible Solution**
<!--- Optional: only if you have suggestions on a fix/reason for the bug. -->
At line 14 in the Class __vendor/api-platform/core/src/GraphQl/Action/EntrypointAction.php__
```php
use GraphQL\Error\Debug;
# Replaced by
use GraphQL\Error\DebugFlag;
Additional Context

Fixed by https://github.com/api-platform/core/pull/3621.
You need to either:
2.5 branch0.13)
Most helpful comment
Fixed by https://github.com/api-platform/core/pull/3621.
You need to either:
2.5branch0.13)