Azure / Azure/data-api-builder
[Bug]: dab update truncates field descriptions at commas
Open
2.x
cli
mcp-server
- Dominant language
- C#
- Stars
- 1.5k
- Forks
- 370
- Avg merge
- 3d 17h
- Merged PRs (30d)
- 8
Description
## Expected
Quoted field descriptions should preserve commas.
```
dab update ServerInventory \
--fields.name Environment \
--fields.description "Deployment environment: Prod, Dev, Test, or UAT"
```
### Expected config:
```json
"description": "Deployment environment: Prod, Dev, Test, or UAT"
```
## Actual
The description is truncated at the first comma.
```json
"description": "Deployment environment: Prod"
```
This makes the CLI unreliable for scripting realistic descriptions, especially descriptions that list valid values.
Contributor guide
Assessment
This issue has not been assessed yet.