https://prefect.io logo
c

Christopher Chong Tau Teng

12/10/2021, 7:54 AM
@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

Anna Geller

12/10/2021, 10:23 AM
@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

Christopher Chong Tau Teng

12/13/2021, 2:33 AM
alright noted
2 Views