diff --git a/packages/web/src/graphql/cache.ts b/packages/web/src/graphql/cache.ts index bca0bbb4..b2b0441b 100644 --- a/packages/web/src/graphql/cache.ts +++ b/packages/web/src/graphql/cache.ts @@ -1,5 +1,4 @@ import { InMemoryCache } from '@apollo/client'; -import offsetLimitPagination from './pagination'; interface IRef { __ref: string; @@ -44,11 +43,6 @@ const cache = new InMemoryCache({ } } } - }, - Query: { - fields: { - getExecutionSteps: offsetLimitPagination(['executionId', 'limit']), - } } } });