Clean Mock Requests

This commit is contained in:
martmull 2024-02-09 10:39:01 +01:00
parent 6cb5d3f19d
commit 8aa20a3436

View File

@ -26,18 +26,6 @@ export const graphqlMocks = {
return HttpResponse.json({
data: {
currentUser: mockedUsersData[0],
views: {
edges: mockedViewsData.map((view) => ({
node: view,
cursor: null,
})),
pageInfo: {
hasNextPage: false,
hasPreviousPage: false,
startCursor: null,
endCursor: null,
},
},
},
});
}),