Artion GraphQL API
  • Getting Started
  • Installation
  • Quickstart
  • GraphQL Schema Basics
  • GraphQL Schema
    • Schema Definition
    • Auxiliary Structures
    • Activity
    • Auction Trade
    • Banned NFT
    • Collection
    • Event
    • Follow
    • Listing Trade
    • Notification Settings
    • Offer Trade
    • Ownership
    • Random Trade
    • Shipping on Redeem
    • Token
    • Like
    • User
Powered by GitBook
On this page
  1. GraphQL Schema

Event

# Event represents something what should be reported to a subscribed client.
type Event {
    type: EventType!
    auction: Auction
    offer: Offer
}

# EventType represent a type of event reported to a subscribed client.
enum EventType {
    AUCTION_BID,
    AUCTION_BID_WITHDRAW,
    AUCTION_RESERVE_UPDATED,
    AUCTION_RESOLVED,
    AUCTION_CANCELLED,
    GOT_OFFER,
    TRANSFER,
}
PreviousCollectionNextFollow

Last updated 3 years ago