kodadot/nft-gallery

View on GitHub
queries/subsquid/general/popularCollectionList.graphql

Summary

Maintainability
Test Coverage
query popularCollectionList(
  $limit: Float
  $orderBy: String
  $dateRange: String
  $orderDirection: String
) {
  seriesInsightTable(
    limit: $limit
    orderBy: $orderBy
    orderDirection: $orderDirection
    dateRange: $dateRange
  ) {
    id
    image
    metadata
    sold
    name
    issuer
    total
    buys
  }
}