Commit b1e6d0ab authored by Jordan Frankfurt's avatar Jordan Frankfurt Committed by GitHub

chore: schema changed gen types (#6033)

schema changed gen types
parent a7fcbb4c
......@@ -86,6 +86,10 @@ export enum Chain {
UnknownChain = 'UNKNOWN_CHAIN'
}
export enum CollectionSortableField {
Volume = 'VOLUME'
}
export type ContractInput = {
address?: InputMaybe<Scalars['String']>;
chain: Chain;
......@@ -371,6 +375,8 @@ export type NftCollectionMarket = {
marketplaces?: Maybe<Array<NftCollectionMarketplace>>;
nftContracts?: Maybe<Array<NftContract>>;
owners?: Maybe<Scalars['Int']>;
percentListed?: Maybe<TimestampedAmount>;
percentUniqueOwners?: Maybe<TimestampedAmount>;
sales?: Maybe<TimestampedAmount>;
totalVolume?: Maybe<TimestampedAmount>;
volume?: Maybe<TimestampedAmount>;
......@@ -650,6 +656,7 @@ export type Query = {
token?: Maybe<Token>;
tokenProjects?: Maybe<Array<Maybe<TokenProject>>>;
tokens?: Maybe<Array<Maybe<Token>>>;
topCollections?: Maybe<NftCollectionConnection>;
topTokens?: Maybe<Array<Maybe<Token>>>;
};
......@@ -740,6 +747,15 @@ export type QueryTokensArgs = {
};
export type QueryTopCollectionsArgs = {
chains?: InputMaybe<Array<Chain>>;
cursor?: InputMaybe<Scalars['String']>;
duration?: InputMaybe<HistoryDuration>;
limit?: InputMaybe<Scalars['Int']>;
orderBy?: InputMaybe<CollectionSortableField>;
};
export type QueryTopTokensArgs = {
chain?: InputMaybe<Chain>;
orderBy?: InputMaybe<TokenSortableField>;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment