This might be a stupid question but is there some way to stop a client connection manually? Say I create a connection through
Copy code
supabaseClient = supbase.createClient(url, key)
, is there a way to go supabaseClient.disconnect() ?
n
Needle
06/07/2022, 8:09 PM
Hello @Jingly!
This thread has been automatically created from your message in #843999948717555735 a few seconds ago.
We have already mentioned the @User so that they can see your message and help you as soon as possible!
Want to unsubscribe from this thread?
Right-click the thread in Discord (or use the ``...`` menu) and select "Leave Thread" to unsubscribe from future updates.
Want to change the title?
Use the ``/title`` command!
We have solved your problem?
Click the button below to archive it.
g
garyaustin
06/07/2022, 8:12 PM
There is not a connection to supabase established. Only thing that might go on, depending on expiration of user token (if one exists) is the token gets refreshed.
Every Supabase call is independent except for realtime connection and there is a way to disconnect that.
j
Jingly
06/10/2022, 2:38 AM
Sorry for the late reply. Thank you. After reading through the docs more I believe I have a better understanding of how to connect with supabase. I was moreso figuring out how to connect to different schemas at/around the same time, since the supabase client can only connect to one schema at a time