Skip to content

Commit

Permalink
Merge pull request #540 from appwrite/fix-docs-platform-copy
Browse files Browse the repository at this point in the history
Fix how we address the Appwrite platform in docs.
  • Loading branch information
eldadfux authored Jan 20, 2024
2 parents 2b241ef + 8a4eb3c commit 3403fef
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/routes/docs/apis/graphql/+page.markdoc
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand Down
2 changes: 1 addition & 1 deletion src/routes/docs/quick-starts/flutter/+page.markdoc
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
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.
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}

Expand Down

0 comments on commit 3403fef

Please sign in to comment.