fix: remove offset pagination in getExecutionSteps

This commit is contained in:
Ali BARIN
2022-08-09 17:01:20 +02:00
parent e0a76ea918
commit 0b01a6386d

View File

@@ -1,5 +1,4 @@
import { InMemoryCache } from '@apollo/client'; import { InMemoryCache } from '@apollo/client';
import offsetLimitPagination from './pagination';
interface IRef { interface IRef {
__ref: string; __ref: string;
@@ -44,11 +43,6 @@ const cache = new InMemoryCache({
} }
} }
} }
},
Query: {
fields: {
getExecutionSteps: offsetLimitPagination(['executionId', 'limit']),
}
} }
} }
}); });