diff --git a/app/config/services.php b/app/config/services.php index 17375c360a..0ff3da7a81 100644 --- a/app/config/services.php +++ b/app/config/services.php @@ -173,14 +173,14 @@ return [ 'graphql' => [ 'key' => 'graphql', 'name' => 'GraphQL', - 'subtitle' => 'Appwrite\'s GraphQL Endpoint', - 'description' => 'GraphQL Endpoint', + 'subtitle' => 'The GraphQL API allows you to query and mutate your Appwrite server using GraphQL.', + 'description' => '/docs/services/graphql.md', 'controller' => 'api/graphql.php', - 'sdk' => false, - 'docs' => false, - 'docsUrl' => '', + 'sdk' => true, + 'docs' => true, + 'docsUrl' => 'https://appwrite.io/docs/graphql', 'tests' => true, - 'optional' => false, - 'icon' => '', + 'optional' => true, + 'icon' => '/images/services/graphql.png', ], ];