From d9c0d1d5562904116ea70d59b808146a60b1282c Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Thu, 7 Apr 2022 17:54:10 +1200 Subject: [PATCH] Update service def --- app/config/services.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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', ], ];