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!

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!]!

A list of asset types that appear under the collection.

Collection.banner_media Media

The Media object of the banner media associated with the collection.

Collection.banner_media_id Int

The media identifier of the banner media associated with the collection.

Collection.contract_addresses [ContractAddress!]!

A list of contract addresses that belong to the collection.

Collection.description String

Information about the collection.

Collection.featured_video_url String

The url of a video highlighting the collection, if it exists.

Collection.floor_listings [Listing!]

A list of the 10 lowest priced listings inside the collection.

Collection.id Int!

A unique indentifier.

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

Data about the active listings on the assets belonging to the collection.

Collection.logo_media Media

The Media object of the collection's logo.

Collection.logo_media_id Int!

The media identifier of the collection's logo.

Collection.name String!

The name of the collection.

Collection.num_assets Int

The number of assets belonging to the collection.

Collection.num_owners Int

The number of unique wallets that own assets belonging to the collection.

Collection.slug String!

The url-friendly name of the collection.

Collection.traits [Trait!]

A list of traits attached to the assets belonging to the collection.