Is it possible to get the folder names in the main workspace via the API?
I’ve tried the following, and none seem to work:
The following two queries return no data:
query { folders (workspace_ids: "null") {id name}}
query { folders (workspace_ids: -1) {id name}}
The following query returns all the folders in all workspaces:
query { folders (workspace_ids: null) {id name}}