Plugin
Represents a plugin in the system with its installation and activation status
type Plugin {
backup: Boolean
createdAt: DateTime
id: ID
isActivated: Boolean
isInstalled: Boolean
pluginId: String
updatedAt: DateTime
}
Fields
Plugin.backup ● Boolean scalar
Whether the plugin has an existing backup
Plugin.createdAt ● DateTime scalar
Timestamp when the plugin record was created
Plugin.id ● ID scalar
Unique identifier for the plugin record
Plugin.isActivated ● Boolean scalar
Whether the plugin is currently activated
Plugin.isInstalled ● Boolean scalar
Whether the plugin is installed in the system
Plugin.pluginId ● String scalar
The unique identifier/name of the plugin
Plugin.updatedAt ● DateTime scalar
Timestamp when the plugin record was last updated
Returned By
createPlugin mutation ● deletePlugin mutation ● getPluginById query ● getPlugins query ● installPlugin mutation ● updatePlugin mutation ● uploadPluginZip mutation