DomainParts (Object)
Description
No description
Fields
| Name | Description | 
|---|---|
| apex - String! | The apex part of the address. It includes the domain and TLD. The `my-domain.com` in `sub.my-domain.com`. | 
| domain - String! | The full domain name (a.k.a FQDN). It includes the subdomain, domain, and TLD. Is equivalent to `apex` if `subdomain` is missing. | 
| sld - String! | The Second-level domain of the address that appears before TLD. The `my-domain` in `sub.my-domain.com`. | 
| subdomain - String | The subdomain part of the address. The `sub` in `sub.my-domain.com`. | 
| tld - String! | The Top-level domain of the address, per ICANN specifications. (e.g. com, org, co.uk) | 
type DomainParts {
  apex: String!
  domain: String!
  sld: String!
  subdomain: String
  tld: String!
}