Merge pull request #421 from automatisch/fix-pagination-get-execution-steps

fix: remove offset pagination in getExecutionSteps
This commit is contained in:
Ömer Faruk Aydın
2022-08-09 18:40:02 +03:00
committed by GitHub

View File

@@ -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']),
}
}
}
});