OBJECT

Domain

Domain - forward record.

link GraphQL Schema definition

  • type Domain implements Node {
  • # Domain address.
  • address: Address
  • # `ReverseRecord` corresponding to `address`.
  • addressReverseRecord: ReverseRecord
  • # Data associated with this domain.
  • data: [DataItem!]!
  • # Domain validity.
  • expiresAtUtc: DateTime
  • # Unique global ID of the object.
  • id: ID!
  • # First segment of domain name.
  • label: String!
  • # Last `Auction` of the domain.
  • lastAuction: Auction
  • # Domain level, which is a number of segments in its `name`.
  • level: Int!
  • # Domain name.
  • name: String!
  • # The hash of the operation group that contained this/last change.
  • operationGroupHash: String!
  • # Domain TZIP-12 operators.
  • operators: [DomainOperator!]!
  • # Owner address.
  • owner: Address!
  • # `ReverseRecord` corresponding to `owner`.
  • ownerReverseRecord: ReverseRecord
  • # Parent domain `name`.
  • parentName: String
  • # Parent domain `owner` address.
  • parentOwner: String
  • # `ReverseRecord` corresponding to `parentOwner`.
  • parentOwnerReverseRecord: ReverseRecord
  • # `ReverseRecord` record corresponding to both the `address` and the `name` of
  • # this domain.
  • reverseRecord: ReverseRecord
  • # Subdomains of the domain e.g. `foo.bar.tez` is subdomain of `bar.tez`.
  • #
  • # Arguments
  • # after: Only return edges after the specified cursor.
  • # before: Only return edges prior to the specified cursor.
  • # first: Specifies the maximum number of edges to return,
  • # starting after the cursor specified by `after`, or the first number of edges if
  • # `after` is not specified.
  • # last: Specifies the maximum number of edges to return, starting
  • # prior to the cursor specified by `before`, or the last number of edges if
  • # `before` is not specified.
  • # onlyDirectChildren: If `true`, only direct subdomains with
  • # level +1 are returned. Otherwise, all subdomains are returned. Default is
  • # `false`.
  • # order: [Not documented]
  • subdomains(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • onlyDirectChildren: Boolean,
  • order: DomainOrder
  • ): DomainConnection!
  • # TZIP-12 NFT Token id.
  • tokenId: Int
  • }