<@U02H1A95XDW> <@U01QEJ9PP53> is there a CLI comma...
# prefect-server
c
@Anna Geller @Kevin Kho is there a CLI command to retrieve registered tenant or check if there is registered tenant from Prefect server? something like
get_available_tenant
in Python lib
a
@Christopher Chong Tau Teng there is no CLI command for that, but you can list all tenants using GraphQL:
Copy code
query {
  tenant {
    id
    name
    created
  }
}
c
alright noted