From 8a4eb3c9592e7bb79eb2ce1cb99ec44b29ff0bc6 Mon Sep 17 00:00:00 2001 From: "Vincent (Wen Yu) Ge" Date: Fri, 19 Jan 2024 20:55:02 +0000 Subject: [PATCH] Fix copy with how we address the platform --- src/routes/docs/apis/graphql/+page.markdoc | 4 ++-- src/routes/docs/quick-starts/flutter/+page.markdoc | 2 +- .../[version]/[platform]/[service]/descriptions/health.md | 2 +- .../docs/tooling/command-line/installation/+page.markdoc | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/routes/docs/apis/graphql/+page.markdoc b/src/routes/docs/apis/graphql/+page.markdoc index 395bbde24c..ed3c9e07fe 100644 --- a/src/routes/docs/apis/graphql/+page.markdoc +++ b/src/routes/docs/apis/graphql/+page.markdoc @@ -4,9 +4,9 @@ title: GraphQL description: Leverage the Appwrite GraphQL API for flexible data querying and manipulation. Explore GraphQL schema, queries, mutations, and how to integrate with your applications. --- -Appwrite supports multiple protocols for accessing the server, including [REST](/docs/apis/rest), [GraphQL](/docs/apis/graphql), and [Realtime](/docs/apis/realtime). +Appwrite supports multiple protocols for accessing the platform, including [REST](/docs/apis/rest), [GraphQL](/docs/apis/graphql), and [Realtime](/docs/apis/realtime). -The GraphQL API allows you to query and mutate any resource type on your Appwrite server through the endpoint `/v1/graphql`. +The GraphQL API allows you to query and mutate any resource type on the Appwrite platform through the endpoint `/v1/graphql`. Every endpoint available through REST is available through GraphQL, except for OAuth. # Requests {% #requests %} diff --git a/src/routes/docs/quick-starts/flutter/+page.markdoc b/src/routes/docs/quick-starts/flutter/+page.markdoc index 1cd81e991d..f9afd8675d 100644 --- a/src/routes/docs/quick-starts/flutter/+page.markdoc +++ b/src/routes/docs/quick-starts/flutter/+page.markdoc @@ -54,7 +54,7 @@ The path must point to the created HTML file, `/auth.html` in this case. The callbackUrlScheme parameter in the authenticate() method isn't applicable when you're developing for web platforms. This means you can use this parameter to define URL schemes specifically for native platforms without affecting the web version of your Flutter application. {% info title="Flutter web cross-domain communication & cookies" %} -While running Flutter Web, make sure your Appwrite server and your Flutter client use the same top-level domain and protocol (HTTP or HTTPS) to communicate. +While running Flutter Web, make sure your Appwrite project and your Flutter client use the same top-level domain and protocol (HTTP or HTTPS) to communicate. When communicating between different domains or protocols, you may receive HTTP status error 401 because some modern browsers block cross-site or insecure cookies for enhanced privacy. In production, Appwrite allows you to set multiple [custom-domains](/docs/advanced/platform/custom-domains) for each project. {% /info %} diff --git a/src/routes/docs/references/[version]/[platform]/[service]/descriptions/health.md b/src/routes/docs/references/[version]/[platform]/[service]/descriptions/health.md index 1edaf156d8..79a03cdb70 100644 --- a/src/routes/docs/references/[version]/[platform]/[service]/descriptions/health.md +++ b/src/routes/docs/references/[version]/[platform]/[service]/descriptions/health.md @@ -1 +1 @@ -The Health service is designed to allow you to both validate and monitor that your Appwrite server instance and all of its internal components are up and responsive. \ No newline at end of file +The Health service is designed to allow you to both validate and monitor that your Appwrite instance and all of its internal components are up and responsive. \ No newline at end of file diff --git a/src/routes/docs/tooling/command-line/installation/+page.markdoc b/src/routes/docs/tooling/command-line/installation/+page.markdoc index 7156235668..b72eeea798 100644 --- a/src/routes/docs/tooling/command-line/installation/+page.markdoc +++ b/src/routes/docs/tooling/command-line/installation/+page.markdoc @@ -4,7 +4,7 @@ title: Command line interface (CLI) description: Get started with the Appwrite CLI by following the installation guide. Learn how to set up and configure the CLI on your development environment. --- -The [Appwrite CLI](https://github.com/appwrite/sdk-for-cli) is a command-line application that allows you to interact with the [Appwrite server](https://appwrite.io/docs/getting-started-for-server) and perform server-side tasks using your terminal. This includes creating and managing projects, managing resources (documents, files, users), creating and deploying Appwrite Functions, and other operations available through Appwrite's API. +The [Appwrite CLI](https://github.com/appwrite/sdk-for-cli) is a command-line application that allows you to interact with Appwrite to perform server-side tasks using your terminal. This includes creating and managing projects, managing resources (documents, files, users), creating and deploying Appwrite Functions, and other operations available through Appwrite's API. # Installation {% #Installation %}