non-fungible-apps/ui/graphql/queries.graphql

21 lines
252 B
GraphQL

query lastMintsPaginated($pageSize: Int, $skip: Int) {
newMints(
first: $pageSize
skip: $skip
orderDirection: desc
orderBy: tokenId
) {
id
tokenId
description
name
}
}
query totalTokens {
tokens {
id
}
}