Hi there, I asked a similar question before, sorry in advance. I'm now implementing this self-hosted (will use cloud as soon as 1.5 is released).
How do I initialize an SDK in SSR if I want to use GraphQL? https://appwrite.io/docs/tutorials/nextjs-ssr-auth/step-3
How do I hook onto that createSessionClient to query/mutate?
The GraphQL docs section only shows
const client = new Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your Appwrite Endpoint
.setProject('<PROJECT_ID>'); // Your project ID
const graphql = new Graphql(client);
But that's for Client SDK. I need to hook on to the Account(client) account session somehow, right?
Recommended threads
- Transaction feature is not working somet...
I am getting the below error sometimes and sometimes it is working perfectly fine. Transaction failed: AppwriteException: transaction_not_found, Transaction wi...
- Appwrite Push Notifications: "Unknown er...
Hi all, I'm running into an issue with Appwrite push notifications in my web project. When I try to manually send a notification to a user from the Appwrite we...
- Updating to 1.9.0
Docs are lacking, I've already run in to some issues: - Firstly the web UI port doesn't work... had to add ```--http-port=9999``` in to the docker run command t...