info_tfgrid/collections/sysadmins/advanced/list_public_ips.md
2024-07-10 21:30:25 -04:00

322 B

Listing Public IPs

Table of Contents


Introduction

Listing public IPs can be done by asking graphQL for all IPs that has contractId = 0

Example

query MyQuery {
  publicIps(where: {contractId_eq: 0}) {
    ip
  }
}