Skip to content

Commit

Permalink
delete comments
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsupa597 committed Feb 1, 2023
1 parent 46fc017 commit d31f07a
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions pages/nft-collections/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,11 @@ import SortIcon from 'assets/icons/sort.svg'
import { client, GraphQLSchema, handleDeleteInvalid } from 'utils'
import styles from './styles.module.scss'

// TODO: minted count sort
interface Variables {
name: string | null
before: string | null
after: string | null
limit: number
// holder_count_sort: string
// name_sort: string
// minted_count_sort: string
sorter: UdtsSorterInput[] | []
}

Expand All @@ -54,10 +50,6 @@ enum UdtsSorterValueEnum {
minted_count_sort = 'MINTED_COUNT',
}

// $holder_count_sort: SortType
// $name_sort: SortType
// $minted_count_sort: SortType

const erc721ListQuery = gql`
query ($limit: Int, $name: String, $before: String, $after: String, $sorter: UdtsSorterInput) {
erc721_udts(input: { limit: $limit, fuzzy_name: $name, before: $before, after: $after, sorter: $sorter }) {
Expand Down

0 comments on commit d31f07a

Please sign in to comment.