OBJECT

ExtensionConfiguration

The hosted configuration for an extension that comes from config service.

link GraphQL Schema definition

1type ExtensionConfiguration {
2
3# The broadcaster-set, per-channel segment of the extension configuration.
4broadcaster: ExtensionConfigurationRecord
5
6# The developer-set, per-channel segment of the extension configuration.
7developer: ExtensionConfigurationRecord
8
9# The id of the extension that this configuration document belongs to.
10extensionID: ID!
11
12# The developer-set segment of the extension configuration that affects all
13# installs of the extension.
14global: ExtensionConfigurationRecord
15
16}