Is it possible to create a tenant with the graphql...
# prefect-server
d
Is it possible to create a tenant with the graphql api?
1
nm, I managed to figure it out
Copy code
mutation {
  create_tenant(input: {
    name: "default", slug: "default"
  }) {
    id
  }
}
a
nice! you can also do it from CLI (probably easier):
Copy code
prefect server create-tenant --name default --slug default