`edgedb configure` should maybe get the list of config values via reflection
Open
- Dominant language
- Rust
- Stars
- 175
- Forks
- 32
- PR merge metrics
- No merged PRs in 30d
Description
Otherwise we'll probably end up always missing some.
If we do it via reflection, it's easy to include extension configs too.
This should get all the config properties that can be set with SET
```
select schema::ObjectType {
name,
properties: { name, typ := .target.name },
}
filter .name = 'cfg::AbstractConfig'
or 'cfg::ExtensionConfig' in .ancestors.name;
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.