INPUT_OBJECT

AuctionsFilter

Complex object with filter conditions for filtering Auction-s.

link GraphQL Schema definition

  • input AuctionsFilter {
  • # Additional filters of the same type are joined using the `AND` operator. It's
  • # joined using AND with other filter properties.
  • and: [AuctionsFilter!]
  • # Filters `Auction`-s by their `bidCount`.
  • bidCount: IntFilter
  • # Filters `Auction`-s by `bidder` addresses of `bids`.
  • bidders: AddressArrayFilter
  • # Filters `Auction`-s by their `domainName`.
  • domainName: StringFilter
  • # Filters `Auction`-s by their `endsAtUtc`.
  • endsAtUtc: NullableDateTimeFilter
  • # Filters `Auction`-s by bidder's address of the `highestBid`.
  • highestBidder: AddressFilter
  • # Additional filters of the same type are joined using the `OR` operator. It's
  • # joined using AND with other filter properties.
  • or: [AuctionsFilter!]
  • # Filters `Auction`-s by their `state`.
  • state: AuctionStateFilter
  • }