Type alias OwnedNftsQuery

OwnedNftsQuery: {
    __typename?: "Query";
    ownedNfts: {
        __typename?: "NFTConnection";
        pageInfo: {
            __typename?: "PageInfo";
            endCursor?: string | null;
            hasNextPage: boolean;
        };
        edges: {
            __typename?: "NFTEdge";
            node: {
                __typename?: "NFT";
                id: string;
                tokenId: bigint;
                price?: bigint | null;
                priceCurrencyAddress?: string | null;
                collection?: {
                    __typename?: "Collection";
                    id: string;
                } | null;
                activeLoan?: {
                    __typename?: "MultiSourceLoan";
                    id: string;
                } | null;
                statistics: {
                    __typename?: "NftStatistics";
                    lastSale?: {
                        __typename?: "Sale";
                        order: {
                            __typename?: "CollectionOrder";
                            price: bigint;
                            currency: {
                                __typename?: "Currency";
                                address: Address;
                                decimals: number;
                            };
                        } | {
                            __typename?: "SingleNFTOrder";
                            price: bigint;
                            currency: {
                                __typename?: "Currency";
                                address: Address;
                                decimals: number;
                            };
                        };
                    } | null;
                    topTraitFloorPrice?: {
                        __typename?: "CurrencyAmount";
                        amount: number;
                        currency: {
                            __typename?: "Currency";
                            address: Address;
                            decimals: number;
                        };
                    } | null;
                };
            };
        }[];
    };
}

Type declaration

  • Optional __typename?: "Query"
  • ownedNfts: {
        __typename?: "NFTConnection";
        pageInfo: {
            __typename?: "PageInfo";
            endCursor?: string | null;
            hasNextPage: boolean;
        };
        edges: {
            __typename?: "NFTEdge";
            node: {
                __typename?: "NFT";
                id: string;
                tokenId: bigint;
                price?: bigint | null;
                priceCurrencyAddress?: string | null;
                collection?: {
                    __typename?: "Collection";
                    id: string;
                } | null;
                activeLoan?: {
                    __typename?: "MultiSourceLoan";
                    id: string;
                } | null;
                statistics: {
                    __typename?: "NftStatistics";
                    lastSale?: {
                        __typename?: "Sale";
                        order: {
                            __typename?: "CollectionOrder";
                            price: bigint;
                            currency: {
                                __typename?: "Currency";
                                address: Address;
                                decimals: number;
                            };
                        } | {
                            __typename?: "SingleNFTOrder";
                            price: bigint;
                            currency: {
                                __typename?: "Currency";
                                address: Address;
                                decimals: number;
                            };
                        };
                    } | null;
                    topTraitFloorPrice?: {
                        __typename?: "CurrencyAmount";
                        amount: number;
                        currency: {
                            __typename?: "Currency";
                            address: Address;
                            decimals: number;
                        };
                    } | null;
                };
            };
        }[];
    }
    • Optional __typename?: "NFTConnection"
    • pageInfo: {
          __typename?: "PageInfo";
          endCursor?: string | null;
          hasNextPage: boolean;
      }
      • Optional __typename?: "PageInfo"
      • Optional endCursor?: string | null
      • hasNextPage: boolean
    • edges: {
          __typename?: "NFTEdge";
          node: {
              __typename?: "NFT";
              id: string;
              tokenId: bigint;
              price?: bigint | null;
              priceCurrencyAddress?: string | null;
              collection?: {
                  __typename?: "Collection";
                  id: string;
              } | null;
              activeLoan?: {
                  __typename?: "MultiSourceLoan";
                  id: string;
              } | null;
              statistics: {
                  __typename?: "NftStatistics";
                  lastSale?: {
                      __typename?: "Sale";
                      order: {
                          __typename?: "CollectionOrder";
                          price: bigint;
                          currency: {
                              __typename?: "Currency";
                              address: Address;
                              decimals: number;
                          };
                      } | {
                          __typename?: "SingleNFTOrder";
                          price: bigint;
                          currency: {
                              __typename?: "Currency";
                              address: Address;
                              decimals: number;
                          };
                      };
                  } | null;
                  topTraitFloorPrice?: {
                      __typename?: "CurrencyAmount";
                      amount: number;
                      currency: {
                          __typename?: "Currency";
                          address: Address;
                          decimals: number;
                      };
                  } | null;
              };
          };
      }[]