kodadot/nft-gallery

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

Summary

Maintainability
Test Coverage
query swapsList($where: SwapWhereInput!, $orderBy: [SwapOrderByInput!] = [blockNumber_DESC]) {
    swaps(where: $where, orderBy: $orderBy) {
    id
    expiration
    blockNumber
    status
    caller
    surcharge
    price
    nft {
      id
      name
      sn
      currentOwner
      image
    }
    desired {
      id
      name
      sn
      currentOwner
      image
    }
  }
}