From e23ec9f7ba6b7b159a266cd1bdf49355d1eec67a Mon Sep 17 00:00:00 2001 From: mendesfabio Date: Wed, 29 Nov 2023 08:51:11 -0300 Subject: [PATCH] remove unused code --- modules/pool/pool.gql | 8 -------- 1 file changed, 8 deletions(-) diff --git a/modules/pool/pool.gql b/modules/pool/pool.gql index 38a2b16a5..e0d43a86f 100644 --- a/modules/pool/pool.gql +++ b/modules/pool/pool.gql @@ -19,7 +19,6 @@ extend type Query { poolGetSwaps(first: Int, skip: Int, where: GqlPoolSwapFilter): [GqlPoolSwap!]! poolGetBatchSwaps(first: Int, skip: Int, where: GqlPoolSwapFilter): [GqlPoolBatchSwap!]! poolGetJoinExits(first: Int, skip: Int, where: GqlPoolJoinExitFilter): [GqlPoolJoinExit!]! - poolGetUserSwapVolume(first: Int, skip: Int, where: GqlUserSwapVolumeFilter): [GqlPoolUserSwapVolume!]! poolGetFeaturedPoolGroups(chains: [GqlChain!]!): [GqlPoolFeaturedPoolGroup!]! poolGetSnapshots(id: String!, chain: GqlChain, range: GqlPoolSnapshotDataRange!): [GqlPoolSnapshot!]! poolGetAllPoolsSnapshots(chains: [GqlChain!], range: GqlPoolSnapshotDataRange!): [GqlPoolSnapshot!]! @@ -94,13 +93,6 @@ enum GqlPoolMinimalType { FX } -type GqlFeaturedPool { - id: ID! - primary: Boolean! - imageUrl: String! - pool: GqlPoolMinimal! -} - interface GqlPoolBase { #fields that never change after creation id: ID!