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`).
- : AddressFilter
- # Additional filters of the same type are joined using the `AND` operator. It's
- # joined using AND with other filter properties.
- : [EventsFilter!]
- # Filters `Event`-s by block in which they were created.
- : AssociatedBlockFilter
- # Filters `Event`-s by their `domainName`.
- : StringFilter
- # Additional filters of the same type are joined using the `OR` operator. It's
- # joined using AND with other filter properties.
- : [EventsFilter!]
- # Filters `Event`-s by their `price` (bought, sold, auctioned domain).
- : MutezFilter
- # Filters `Event`-s by their `type`.
- : EventTypeFilter
- }