OBJECT
Domain
Domain - forward record.
link GraphQL Schema definition
- type Domain implements Node {
- # Domain address.
- Address :
- # `ReverseRecord` corresponding to `address`.
- ReverseRecord :
- # Data associated with this domain.
- DataItem!]! : [
- # Domain validity.
- DateTime :
- # Unique global ID of the object.
- ID! :
- # Last `Auction` of the domain.
- Auction :
- # Domain level, which is a number of segments in its `name`.
- Int! :
- # Domain name.
- String! :
- # The hash of the operation group that contained this/last change.
- String! :
- # Domain TZIP-12 operators.
- DomainOperator!]! : [
- # Owner address.
- Address! :
- # `ReverseRecord` corresponding to `owner`.
- ReverseRecord :
- # Parent domain `name`.
- String :
- # Parent domain `owner` address.
- String :
- # `ReverseRecord` corresponding to `parentOwner`.
- ReverseRecord :
- # `ReverseRecord` record corresponding to both the `address` and the `name` of
- # this domain.
- 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]
- (
- String, :
- String, :
- Int, :
- Int, :
- Boolean, :
- DomainOrder :
- ): DomainConnection!
- # TZIP-12 NFT Token id.
- Int :
- }
link Require by
- DomainConnectionA relay connection from an object to a list of objects of a particular type. For more details, see: `https://relay.dev/graphql/connections.htm`
- DomainEdgeAn edge in a connection from an object to another object of a particular type.
- QueryRoot node with entry queries.
- ReverseRecordReverse record.