New `team_owners_subscribers` field on workspaces queries
December 22nd, 2023
You can now query a workspace's team owners using the team_owners_subscribers
field on a workspaces
query. This field is available in API versions 2024-01
and later. You can read more about workspaces and the supported fields in our documentation!
Example
The following query would return the name and ID of the team owners in workspace 1234567.
query {
workspaces (ids: 1234567) {
team_owners_subscribers {
name
id
}
}