mirror of
https://github.com/supabase/supabase.git
synced 2026-07-04 06:44:22 +08:00
24 lines
401 B
Plaintext
24 lines
401 B
Plaintext
---
|
|
id: getchannels
|
|
title: 'getChannels()'
|
|
slug: /getchannels
|
|
custom_edit_url: https://github.com/supabase/supabase/edit/master/spec/supabase_js_v2_legacy.yml
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs'
|
|
import TabItem from '@theme/TabItem'
|
|
|
|
Returns all Realtime channels.
|
|
|
|
```js
|
|
const channels = supabase.getChannels()
|
|
```
|
|
|
|
## Examples
|
|
|
|
### Get all channels
|
|
|
|
```js
|
|
const channels = supabase.getChannels()
|
|
```
|