laravel-graphql icon indicating copy to clipboard operation
laravel-graphql copied to clipboard

how to set depth for each query

Open georgehao opened this issue 6 years ago • 1 comments

Hello, set the depth for each query is supported bywebonyx/graphql-php, how can i do in laravel-graphql?

georgehao avatar Sep 26 '18 03:09 georgehao

config/graphql.php

'security' => [
        'query_max_complexity' => null,
        'query_max_depth' => null,
        'disable_introspection' => false
]

killtw avatar Oct 02 '18 02:10 killtw