This commit is contained in:
Gogs
2021-06-02 01:52:05 +02:00
parent 499abe195e
commit e7d7d18f77
7 changed files with 77 additions and 7 deletions
+23 -1
View File
@@ -6,4 +6,26 @@
'menu' => [
'main' => 'GraphQL',
],
];
'permission' => [
'tab' => [
'schemas' => 'Schemas',
],
'label' => [
'schemas' => 'Manage schemas',
],
],
'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.'
]
],
];