SCALAR
String
v8.6.2, commit: c31b95a6
link GraphQL Schema definition
- scalar String
link Require by
- AuctionDomain auction.
- AuctionBidEventAn event triggered by a user's bid to an auction.
- AuctionEdgeAn edge in a connection from an object to another object of a particular type.
- AuctionEndEventAn event triggered by a block with a timestamp greater or equal to an auction's end.
- AuctionSettleEventAn event triggered by a user's auction settlement action.
- AuctionWithdrawEventAn event triggered by a user's withdrawal action.
- BalanceA user balance for the specific TLD registrar.
- BidAuction bid.
- BidderBalancesBidder balances from unused auctions bids.
- BlockBlock in the chain.
- BuyOfferDomain buy offer.
- BuyOfferEdgeAn edge in a connection from an object to another object of a particular type.
- BuyOfferExecutedEventAn event triggered by a user accepting an existing offer to buy a domain.
- BuyOfferPlacedEventAn event triggered by a user creating an offer to buy a domain.
- BuyOfferRemovedEventAn event triggered by a user removing his offer to buy a domain.
- DataItemAn item of arbitrary data associated with the record.
- DomainDomain - forward record.
- DomainBuyEventAn event triggered by a user buying a domain.
- DomainClaimEventAn event triggered by a user claiming a DNS domain.
- DomainCommitEventAn event triggered by a user's commit transaction during the domain buying process.
- DomainDataOffer's domain data.
- DomainEdgeAn edge in a connection from an object to another object of a particular type.
- DomainGrantEventAn event triggered by a sunrise period granting a domain.
- DomainLabelFilterFilters `Domain`-s by their `label`.
- DomainOperatorDomain TZIP-12 operator.
- DomainRenewEventAn event triggered by a user renewing a domain.
- DomainSetChildRecordEventAn event triggered by a user creating a subdomain.
- DomainTransferEventAn event triggered by a user transferring a domain.
- DomainUpdateEventAn event triggered by a user updating domain's data.
- DomainUpdateOperatorsEventAn event triggered by a user updating operators for a domain.
- EventEdgeAn edge in a connection from an object to another object of a particular type.
- IdEqualityFilterFilter conditions for filtering `id` property.
- NullableStringFilterFilter conditions for filtering associated property of the type `String`.
- OfferDomain sell offer.
- OfferEdgeAn edge in a connection from an object to another object of a particular type.
- OfferExecutedEventAn event triggered by a user accepting an existing offer to buy a domain.
- OfferPlacedEventAn event triggered by a user creating an offer to sell a domain.
- OfferRemovedEventAn event triggered by a user removing his offer to sell a domain.
- OfferUpdatedEventAn event triggered by a user updating an offer to sell a domain.
- PageInfoInformation about pagination in a connection.
- QueryRoot node with entry queries.
- ReverseRecordReverse record.
- ReverseRecordClaimEventAn event triggered by a user claiming a reverse record.
- ReverseRecordEdgeAn edge in a connection from an object to another object of a particular type.
- ReverseRecordUpdateEventAn event triggered by a user updating a reverse record.
- StringArrayFilterFilter conditions for filtering associated property of the type `[String!]`.
- StringEqualityFilterFilter conditions for filtering block `hash` property.
- StringFilterFilter conditions for filtering associated property of the type `String!`.
- __DirectiveA Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document. In some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.
- __EnumValueOne possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.
- __FieldObject and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.
- __InputValueArguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.
- __SchemaA GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.
- __TypeThe fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum. Depending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.