INPUT_OBJECT

EventsFilter

Complex object with filter conditions for filtering Event-s.

link GraphQL Schema definition

  • input EventsFilter {
  • # Filters `Event`-s by related address (`sourceAddress`, `previousBidderAddress`,
  • # `participants`, `newOwner`, `sellerAddress` or `buyerAddress`).
  • address: AddressFilter
  • # Additional filters of the same type are joined using the `AND` operator. It's
  • # joined using AND with other filter properties.
  • and: [EventsFilter!]
  • # Filters `Event`-s by block in which they were created.
  • block: AssociatedBlockFilter
  • # Filters `Event`-s by their `domainName`.
  • domainName: StringFilter
  • # Additional filters of the same type are joined using the `OR` operator. It's
  • # joined using AND with other filter properties.
  • or: [EventsFilter!]
  • # Filters `Event`-s by their `price` (bought, sold, auctioned domain).
  • price: MutezFilter
  • # Filters `Event`-s by their `type`.
  • type: EventTypeFilter
  • }