@danitrusca here you go
Use my earlier code to get the details of your current groups.
Then put this into a note, and it will update all your graph groups to be the two groups specified in the below code, #some-query
and #another-query
.
Now you can just follow the structure here to update the groups as you wish.
```dataviewjs
const graph = app.internalPlugins.plugins.graph
const settings = await graph.loadData()
settings.colorGroups = [
{
"query": "#some-query",
"color": {
"a": 1,
"rgb": 16185856
}
},
{
"query": "#another-query",
"color": {
"a": 1,
"rgb": 16187906
}
}
]
await graph.saveData(settings)
await graph.disable()
await graph.enable()
```
Create a couple of different notes with the groups that you want, and just load one of the notes to change all your groups. Or instead you could put the code in a Templater script and launch it from a hotkey.