Listing Public IPs
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
}
}
Listing public IPs can be done by asking graphQL for all IPs that has contractId = 0
query MyQuery {
publicIps(where: {contractId_eq: 0}) {
ip
}
}