OBJECT

IpInfo

Description

Information about an entry in the IP allowlist.

link GraphQL Schema definition

  • type IpInfo {
  • # The IP address/range/subnet of the entry.
  • ipCidr: String!
  • # The IP address/range/subnet of the entry.
  • description: String!
  • # Whether the entry contains the user's current IP address.
  • containsCurrentIpAddress: Boolean!
  • # The timestamp for when the entry was first created.
  • createdAt: DateTime!
  • # The timestamp for when the entry was last updated.
  • updatedAt: DateTime!
  • }