Game
Games are the highest level object on Parcel. We are all here to play them!
type Game {
id: Int!
name: String!
slug: String!
active: Boolean!
description: String
status: String
release_date: Date
developer: String
logo_media_id: Int!
logo_media: Media!
banner_media_id: Int
banner_media: Media
collections: [Collection!]
contract_addresses: [ContractAddress!]!
tokens: [Token!]
listings_data: ListingsData
overview_data: GameOverviewData
floor_listings: [Listing!]
marketplaces: [Marketplace!]
genres: [Genre!]
devices: [Device!]
carousel_media: [Media]
}
Fields
Game.active
Boolean!
Game.active
Boolean!If the game is currently active in the Parcel system. If a game is active: false
it won't show up on any Parcel generated pages or lists.
Game.banner_media
Media
Game.banner_media
MediaThe Media object of the banner media associated with the game.
Game.banner_media_id
Int
Game.banner_media_id
IntThe media identifier of the banner media associated with the game.
Game.carousel_media
[Media]
Game.carousel_media
[Media]A list of Media objects that are used for the game's media carousel on Parcel's marketplace page.
Game.collections
[Collection!]
Game.collections
[Collection!]A list of the collections of assets underneath the game.
Game.contract_addresses
[ContractAddress!]!
Game.contract_addresses
[ContractAddress!]!A list of the contract addresses of the collections underneath the game.
Game.description
String
Game.description
StringInformation about the game.
Game.developer
String
Game.developer
StringThe developer of the game.
Game.devices
[Device!]
Game.devices
[Device!]A list of devices on which the parent game runs.
Game.floor_listings
[Listing!]
Game.floor_listings
[Listing!]A list of the 10 lowest priced listings of the game's assets.
Game.genres
[Genre!]
Game.genres
[Genre!]A list of genres associated with the parent game.
Game.id
Int!
Game.id
Int!A unique indentifier.
Game.listings_data
ListingsData
Game.listings_data
ListingsDataData about the active listings on the assets belonging to the collections underneath the game.
Game.logo_media
Media!
Game.logo_media
Media!The Media object of the game's logo.
Game.logo_media_id
Int!
Game.logo_media_id
Int!The media identifier of the game's logo.
Game.marketplaces
[Marketplace!]
Game.marketplaces
[Marketplace!]A list of the marketplaces from which listings of the game's assets can be pulled.
Game.name
String!
Game.name
String!Game is the name of the game, the name of the game is the name.
Game.overview_data
GameOverviewData
Game.overview_data
GameOverviewDataThe GameOverviewData object contains calculated data about the game such as number of owners of game assets.
Game.release_date
Date
Game.release_date
DateThe release date of the game, if available.
Game.slug
String!
Game.slug
String!The url-friendly name of the game.
Game.status
String
Game.status
StringThe release status of the game. Possible values are Unreleased, Alpha, Beta, and Live.
Game.tokens
[Token]!
Game.tokens
[Token]!A list of the tokens (currencies) associated with the game.