feat(pipelines): edit view.
This commit is contained in:
@ -29,9 +29,12 @@ const cleanTypeName = new ApolloLink((operation, forward) => {
|
||||
if (operation.variables) {
|
||||
operation.variables = deepOmit(["__typename"], operation.variables);
|
||||
}
|
||||
return forward(operation).map((data) => {
|
||||
return data;
|
||||
});
|
||||
const rt = forward(operation);
|
||||
return (
|
||||
rt.map?.((data) => {
|
||||
return data;
|
||||
}) ?? rt
|
||||
);
|
||||
});
|
||||
|
||||
export const FennecApolloClientProvider: FC = ({ children }) => {
|
||||
|
Reference in New Issue
Block a user