hasura / hasura/graphql-engine
Passing name to Hasura Cloud GraphQL API when creating a tenant doesn't actually set the name
- Dominant language
- TypeScript
- Stars
- 32.1k
- Forks
- 3k
- PR merge metrics
- PR metrics pending
Description
### Version Information
Server Version: N/A
CLI Version (for CLI related issue): N/A
### Environment
Cloud
### What is the current behaviour?
Run this against `https://data.pro.hasura.io/v1/graphql` with a PAT:
```
mutation MyMutation {
createTenant(
cloud: "aws"
region: "eu-central-1"
name: "test-personal-website-pr-2"
plan: "cloud_free_v2"
) {
tenant {
id
}
}
}
```
The resulting name of the created Hasura Cloud tenant was `honest-mutt-59`
### What is the expected behaviour?
That it uses the `name` i provided
### How to reproduce the issue?
1. Use the public GraphiQL with `https://data.pro.hasura.io/v1/graphql` and a PAT
2. paste the above query
3. run it
### Screenshots or Screencast
### Please provide any traces or logs that could help here.
### Any possible solutions/workarounds you're aware of?
change the name afterwards
### Keywords
Contributor guide
Assessment
This issue has not been assessed yet.