Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 17 additions & 16 deletions app/spicedb/getting-started/installing-zed/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,9 @@ zed backup <filename> [flags]
### Options

```
--page-limit uint32 defines the number of relationships to be read by requested page during backup
--prefix-filter string include only schema and relationships with a given prefix
--rewrite-legacy potentially modify the schema to exclude legacy/broken syntax
--page-limit uint32 defines the number of relationships to be read by requested page during backup
--prefix-filter string include only schema definitions and relationships with a given prefix
--prefix-replacements stringToString potentially modify the schema to replace desired prefixes (default [])
```

### Options Inherited From Parent Flags
Expand Down Expand Up @@ -229,9 +229,9 @@ zed backup create <filename> [flags]
### Options

```
--page-limit uint32 defines the number of relationships to be read by requested page during backup
--prefix-filter string include only schema and relationships with a given prefix
--rewrite-legacy potentially modify the schema to exclude legacy/broken syntax
--page-limit uint32 defines the number of relationships to be read by requested page during backup
--prefix-filter string include only schema definitions and relationships with a given prefix
--prefix-replacements stringToString potentially modify the schema to replace desired prefixes (default [])
```

### Options Inherited From Parent Flags
Expand Down Expand Up @@ -266,7 +266,8 @@ zed backup parse-relationships <filename> [flags]
### Options

```
--prefix-filter string Include only relationships with a given prefix
--prefix-filter string include only schema definitions and relationships with a given prefix
--prefix-replacements stringToString potentially modify the schema to replace desired prefixes (default [])
```

### Options Inherited From Parent Flags
Expand Down Expand Up @@ -330,8 +331,8 @@ zed backup parse-schema <filename> [flags]
### Options

```
--prefix-filter string include only schema and relationships with a given prefix
--rewrite-legacy potentially modify the schema to exclude legacy/broken syntax
--prefix-filter string include only schema definitions and relationships with a given prefix
--prefix-replacements stringToString potentially modify the schema to replace desired prefixes (default [])
```

### Options Inherited From Parent Flags
Expand Down Expand Up @@ -404,13 +405,13 @@ zed backup restore <filename> [flags]
### Options

```
--batch-size uint restore relationship write batch size (default 1000)
--batches-per-transaction uint number of batches per transaction (default 10)
--conflict-strategy string strategy used when a conflicting relationship is found. Possible values: fail, skip, touch (default "fail")
--disable-retries retries when an errors is determined to be retryable (e.g. serialization errors)
--prefix-filter string include only schema and relationships with a given prefix
--request-timeout duration timeout for each request performed during restore (default 30s)
--rewrite-legacy potentially modify the schema to exclude legacy/broken syntax
--batch-size uint restore relationship write batch size (default 1000)
--batches-per-transaction uint number of batches per transaction (default 10)
--conflict-strategy string strategy used when a conflicting relationship is found. Possible values: fail, skip, touch (default "fail")
--disable-retries retries when an errors is determined to be retryable (e.g. serialization errors)
--prefix-filter string include only schema definitions and relationships with a given prefix
--prefix-replacements stringToString potentially modify the schema to replace desired prefixes (default [])
--request-timeout duration timeout for each request performed during restore (default 30s)
```

### Options Inherited From Parent Flags
Expand Down
Loading