GroupSetting
A GroupSetting is an extensible key-value pair on a Group. Settings provide a flexible way to add group-level configuration without modifying the core Group type.
Fields
| Field | Type | Description |
|---|---|---|
name | GroupSettingName! | Setting name (see GroupSettingName) |
value | String | Setting value |
Query
Accessed via Group.settings:
query GetGroupSettings {
group(id: "Z3JwbGVnYWxlc2lnbxRldg==") {
settings {
name
value
}
}
}
Related
- Group — the group these settings belong to
- GroupSettingName — available setting names