mutation{
instances {
entities {
create(type:"config_file"id:"aed6c9b0-e495-4423-baeb-5597b66416f4"properties:[{name:"filename"value:"config/plugins.toml"}]){
id
type{
name
}
properties(names:["filename""configuration"]){
name
value
}}}}}
By triggering the property `filename' the configuration file will be read again:
mutation reloadPluginsConfig {
instances {
entities {
update(id:"aed6c9b0-e495-4423-baeb-5597b66416f4",
properties:[{name:"filename",
value:"config/plugins.toml"}]){
id
type{
name
}
properties {
name
value
}}}}}