Skip to content

Commit d6f0fb7

Browse files
Update code samples [skip ci]
1 parent d3b5fba commit d6f0fb7

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<CodeGroup>
2+
3+
```go Go
4+
client.Export(&meilisearch.ExportParams{
5+
URL: URL,
6+
APIKey: API_KEY,
7+
PayloadSize: "100MB",
8+
});
9+
```
10+
</CodeGroup>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<CodeGroup>
2+
3+
```go Go
4+
client.Export(&meilisearch.ExportParams{
5+
URL: URL,
6+
APIKey: API_KEY,
7+
PayloadSize: "50MB",
8+
Indexes: map[string]meilisearch.IndexExportOptions{
9+
indexUID: {
10+
Filter: filter,
11+
OverrideSettings: true,
12+
}
13+
}
14+
});
15+
```
16+
</CodeGroup>

0 commit comments

Comments
 (0)