forked from BeOnAuto/auto-engineer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmockApolloClient.ts
More file actions
93 lines (91 loc) · 2.13 KB
/
mockApolloClient.ts
File metadata and controls
93 lines (91 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
// import { ApolloClient, InMemoryCache, HttpLink } from "@apollo/client";
// import { MockedProvider } from "@apollo/client/testing";
// import { gql } from "@apollo/client";
// export const mocks = [
// {
// request: {
// query: gql`
// query GetTodo($id: ID!) {
// getTodo(id: $id) {
// id
// title
// description
// completed
// createdAt
// }
// }
// `,
// variables: { id: "1" },
// },
// result: {
// data: {
// getTodo: {
// id: "1",
// title: "Sample Todo",
// description: "This is a mock todo",
// completed: false,
// createdAt: "2025-06-16T15:22:00Z",
// },
// },
// },
// },
// {
// request: {
// query: gql`
// query GetAllTodos {
// getAllTodos {
// id
// title
// completed
// }
// }
// `,
// },
// result: {
// data: {
// getAllTodos: [
// { id: "1", title: "Todo 1", completed: false },
// { id: "2", title: "Todo 2", completed: true },
// ],
// },
// },
// },
// {
// request: {
// query: gql`
// mutation CreateTodo(
// $title: String!
// $description: String
// $userId: ID!
// ) {
// createTodo(
// title: $title
// description: $description
// userId: $userId
// ) {
// id
// title
// description
// completed
// createdAt
// }
// }
// `,
// variables: { title: "New Todo", description: null, userId: "1" },
// },
// result: {
// data: {
// createTodo: {
// id: "3",
// title: "New Todo",
// description: null,
// completed: false,
// createdAt: "2025-06-16T15:22:00Z",
// },
// },
// },
// },
// ];
// export const mockApolloClient = new ApolloClient({
// cache: new InMemoryCache(),
// });