Skip to content

Market Collections By Queries as Deprecated #779

@kristianeboe

Description

@kristianeboe

Goal

Mark CollectionsByVolumeQuery and CollectionsByMarketCapQuery as deprecated with a note to use collectionTrends.

Description

query CollectionsByVolumeQuery(
  $term: String
  $startDate: DateTimeUtc!
  $endDate: DateTimeUtc!
  $orderDirection: OrderDirection!
  $limit: Int!
  $offset: Int!
) {
  collectionsFeaturedByVolume(
    term: $term
    startDate: $startDate
    endDate: $endDate
    orderDirection: $orderDirection
    limit: $limit
    offset: $offset
  ) {
    floorPrice
    nftCount
    volumeTotal
    holderCount
    nft {
      address
      mintAddress
      name
      image
    }
  }
}

query CollectionsByMarketCapQuery(
  $term: String
  $startDate: DateTimeUtc!
  $endDate: DateTimeUtc!
  $orderDirection: OrderDirection!
  $limit: Int!
  $offset: Int!
) {
  collectionsFeaturedByMarketCap(
    term: $term
    startDate: $startDate
    endDate: $endDate
    orderDirection: $orderDirection
    limit: $limit
    offset: $offset
  ) {
    floorPrice
    nftCount
    volumeTotal
    holderCount
    nft {
      address
      mintAddress
      name
      image
    }
  }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions