How to export workspaces after hiding them

I want to hide some workspaces from sidebar so i made them hidden. How to export them in fixtures, i tried fixtures = [ {
“doctype”: “Workspace”,
},
]

But this wont work

After hidden workspace you can try this

fixtures = [
    {
        "doctype": "Workspace",
        "filters": [
            ["name", "=", "Workspace Name"]
        ]
    }
]
1 Like