OBJECT
IpInfo
Description
Information about an entry in the IP allowlist.
link GraphQL Schema definition
- type IpInfo {
- # Whether the entry contains the current IP address.
- : Boolean!
- # The timestamp for when the entry was first created.
- : DateTime!
- # The description of the entry.
- : String!
- # ID of the entry.
- : Long!
- # The IP address, range, or subnet of the entry.
- : String!
- # Whether the entry is inherited from the global IP allowlist.
- : Boolean!
- # The timestamp for when the entry was last updated.
- : DateTime!
- }
link Require by
- GetWhitelistReplyGet IP whitelist configuration.
- IpInfoConnectionPaginated list of IpInfo objects. Each page of the results includes at most 1000 entries. Query the `pageInfo.hasNextPage` field to know whether all objects were returned.
- IpInfoEdgeWrapper around the IpInfo object. This wrapper is used for pagination.