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

Banned NFT

Authorized moderators are able to ban inappropriate NFTs from the Artion platform. Banned NFT tokens are unlisted and are not visible in the Artion UI.

# BannedNft represents a banned NFT.
type BannedNft {
    # Address of the token contract
    contract: Address!

    # ID of the token (in given token contract)
    tokenId: BigInt!

    # The liked token
    token: Token
}

type BannedNftEdge {
    cursor: Cursor!
    node: BannedNft!
}

type BannedNftConnection {
    # Edges contains provided edges of the sequential list.
    edges: [BannedNftEdge!]!

    # TotalCount is the total amount of items in the list.
    totalCount: BigInt!

    # PageInfo is an information about the current page of the list.
    pageInfo: PageInfo!
}
PreviousAuction TradeNextCollection

Last updated 3 years ago