Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasMahe committed Feb 2, 2024
1 parent 2903533 commit abe8558
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/HomeSection/Featured.gql
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ query FetchFeaturedAssets(
sales: offerOpenSales(
orderBy: [UNIT_PRICE_IN_REF_ASC, CREATED_AT_ASC]
filter: { expiredAt: { greaterThan: $now }, and: $salesFilter }
first: 100 # TODO: implement pagination
first: 100 # TODO: implement pagination. when implementing pagination, find a way to get availableQuantity of all sales
) {
nodes {
id
Expand Down
2 changes: 1 addition & 1 deletion pages/tokens/[id]/index.gql
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ query FetchAsset(
tokenId: { equalTo: $tokenId }
expiredAt: { greaterThan: $now }
}
first: 100 # TODO: implement pagination
first: 100 # TODO: implement pagination. when implementing pagination, find a way to get availableQuantity of all sales
) {
nodes {
id
Expand Down

0 comments on commit abe8558

Please sign in to comment.