Collection
Under each Game is one or more Collections that contain all of its Assets.
type Collection {
id: Int!
name: String!
slug: String!
active: Boolean!
indexable: Boolean!
asset_types: [AssetType!]!
contract_addresses: [ContractAddress!]!
description: String
logo_media_id: Int!
logo_media: Media!
banner_media_id: Int
banner_media: Media
featured_video_url: String
listings_data: ListingsData
num_owners: Int
num_assets: Int
floor_listings: [Listing!]
traits: [Trait!]
}
Fields
Collection.active Boolean!
Collection.active Boolean!If the collection is currently active in the Parcel system. If a collection is active: false it won't show up on any Parcel generated pages or lists.
Collection.asset_types [AssetType!]!
Collection.asset_types [AssetType!]!A list of asset types that appear under the collection.
Collection.banner_media Media
Collection.banner_media MediaThe Media object of the banner media associated with the collection.
Collection.banner_media_id Int
Collection.banner_media_id IntThe media identifier of the banner media associated with the collection.
Collection.contract_addresses [ContractAddress!]!
Collection.contract_addresses [ContractAddress!]!A list of contract addresses that belong to the collection.
Collection.description String
Collection.description StringInformation about the collection.
Collection.featured_video_url String
Collection.featured_video_url StringThe url of a video highlighting the collection, if it exists.
Collection.floor_listings [Listing!]
Collection.floor_listings [Listing!]A list of the 10 lowest priced listings inside the collection.
Collection.id Int!
Collection.id Int!A unique indentifier.
Collection.indexableBoolean!
Collection.indexableBoolean!If the collection is currently being indexed by Parcel's data indexer. If a collection is indexable: false no new listings or assets will register.
Collection.listings_data ListingsData
Collection.listings_data ListingsDataData about the active listings on the assets belonging to the collection.
Collection.logo_media Media
Collection.logo_media MediaThe Media object of the collection's logo.
Collection.logo_media_id Int!
Collection.logo_media_id Int!The media identifier of the collection's logo.
Collection.name String!
Collection.name String!The name of the collection.
Collection.num_assets Int
Collection.num_assets IntThe number of assets belonging to the collection.
Collection.num_owners Int
Collection.num_owners IntThe number of unique wallets that own assets belonging to the collection.
Collection.slug String!
Collection.slug String!The url-friendly name of the collection.
Collection.traits [Trait!]
Collection.traits [Trait!]A list of traits attached to the assets belonging to the collection.
