36 lines
1.0 KiB
PHP
36 lines
1.0 KiB
PHP
<?php return [
|
|
'plugin' => [
|
|
'name' => 'GA GraphQL',
|
|
'description' => '',
|
|
],
|
|
'menu' => [
|
|
'main' => 'GA GraphQL',
|
|
'keys' => 'GraphQL Keys',
|
|
'playground' => 'GraphiQL',
|
|
],
|
|
'permission' => [
|
|
'tab' => [
|
|
'schemas' => 'German Airlines VA - GraphQL',
|
|
],
|
|
'label' => [
|
|
'schemas' => 'Access GraphiQL',
|
|
],
|
|
],
|
|
'settings' => [
|
|
'label' => 'German Airlines VA - GraphQL',
|
|
'description' => 'Configure GrapQL',
|
|
'general' => 'General',
|
|
'engine' => 'Engine',
|
|
'enable_cache' => [
|
|
'label' => 'Enable Schema Cache',
|
|
'comment' =>
|
|
'A large part of the Schema generation is parsing the various graph definition into an AST. These operations are pretty expensive so it is recommended to enable caching in production mode.',
|
|
],
|
|
'batched_queries' => [
|
|
'label' => 'Batched Queries',
|
|
'comment' =>
|
|
'GraphQL query batching means sending multiple queries to the server in one request. You may set this flag to process/deny batched queries.',
|
|
],
|
|
],
|
|
];
|