main page

This commit is contained in:
2025-12-17 17:55:13 +01:00
commit 7fb446c53a
8943 changed files with 1209030 additions and 0 deletions

18
node_modules/appwrite/docs/examples/graphql/query.md generated vendored Normal file
View File

@@ -0,0 +1,18 @@
import { Client, Graphql } from "appwrite";
const client = new Client();
const graphql = new Graphql(client);
client
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('5df5acd0d48c2') // Your project ID
;
const promise = graphql.query({});
promise.then(function (response) {
console.log(response); // Success
}, function (error) {
console.log(error); // Failure
});