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
- Auth broken after update from 1.8.0 to 1...
So ive been having issues creating, deleting or updating users on my appwrite instance after i updated from 1.8.0 to version 1.9.0. When trying to create a user...
- Realtime not processing messages
When subscribing to realtime events of database, the client's websocket receives the messages in the websocket feed, but doesn't call the specific message handl...
- problem with some tables (cant read rows...
I have a weird problem with some tables - they wont show the rows (in console it is stuck loading). I checked in mariadb directly and the collection can be read...