When calling the searchWorkspaces
GraphQL query, is there a term that can be used in the argument to return all workspaces? Here is the basic example:
query {
viewer {
searchWorkspaces(query: "WORKSPACE_NAME") {
nodes {
id
description
displayName
name
}
}
}
}