Can searchWorkspaces query return all workspaces?

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
            }
        }
    }
}

The searchWorkspaces query is designed to search for workspaces given some name/query. If you simply want to get a list of all workspace in an organization you can use:

query getWorkspacesOnZHOrg($zhOrgID: ID!, $pageSize: Int, $after: String) {
  node(id: $zhOrgID) {
    ... on ZenhubOrganization {
      id
      workspaces(first: $pageSize, after: $after) {
        pageInfo {
          hasNextPage
          endCursor
        }
        totalCount
        nodes {
          id
          name
        }
      }
    }
  }
}

This fits what I need perfectly! Thank you :clap: