Skip to content

Commit 8ec063a

Browse files
committed
placeholders for RN, JS SDK code samples
1 parent 1620bd6 commit 8ec063a

File tree

1 file changed

+24
-0
lines changed
  • docs/pages/chat-apps/list-stream-sync

1 file changed

+24
-0
lines changed

docs/pages/chat-apps/list-stream-sync/list.mdx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,18 @@ By default, the conversation will be sorted by last activity (either when the la
103103

104104
:::code-group
105105

106+
```ts [Browser]
107+
108+
```
109+
110+
```ts [Node]
111+
112+
```
113+
114+
```ts [React Native]
115+
116+
```
117+
106118
```kotlin [Kotlin]
107119
val firstPage = try client.conversations.list(limit = 10)
108120
val secondPage = try client.conversations.list(
@@ -130,6 +142,18 @@ To paginate against a stably sorted list you should use the `createdAtBeforeNs`
130142

131143
:::code-group
132144

145+
```ts [Browser]
146+
147+
```
148+
149+
```ts [Node]
150+
151+
```
152+
153+
```ts [React Native]
154+
155+
```
156+
133157
```kotlin [Kotlin]
134158
val firstPage = try client.conversations.list(limit = 10, orderBy = Conversations.ListConversationsOrderBy.CREATED_AT)
135159
val secondPage = try client.conversations.list(

0 commit comments

Comments
 (0)