Hi, is there a way to get the IP addresses of an app via GraphQL api?
I checked the playground and example queries but didn’t find anything.
The docs are really bad for this.
Hi, is there a way to get the IP addresses of an app via GraphQL api?
I checked the playground and example queries but didn’t find anything.
The docs are really bad for this.
The docs are a bit confusing. Try something like:
query {
app(name:"autumn-sun-12345") {
ipAddresses { nodes { address } }
...
it should return:
...
"ipAddresses": {
"nodes": [
{
"address": "xx.xx.xx.xx"
}
...
Worked great! Thanks!