|
2 | 2 |
|
3 | 3 | exports[` 1`] = `
|
4 | 4 | > 1 | type Mutation { SetMessage(message: String): String }
|
5 |
| - | ^ Input "message" should be called "input" |
| 5 | + | ^^^^^^^ Input "message" should be called "input" |
6 | 6 | `;
|
7 | 7 |
|
8 | 8 | exports[` 2`] = `
|
9 | 9 | > 1 | type Mutation { SetMessage(message: String): String }
|
10 |
| - | ^ InputType "String" name should be "SetMessageInput" |
| 10 | + | ^^^^^^ InputType "String" name should be "SetMessageInput" |
11 | 11 | `;
|
12 | 12 |
|
13 | 13 | exports[` 3`] = `
|
14 | 14 | > 1 | type Mutation { SetMessage(input: String): String }
|
15 |
| - | ^ InputType "String" name should be "SetMessageInput" |
| 15 | + | ^^^^^^ InputType "String" name should be "SetMessageInput" |
16 | 16 | `;
|
17 | 17 |
|
18 | 18 | exports[` 4`] = `
|
19 | 19 | > 1 | type Mutation { SetMessage(hello: SetMessageInput): String }
|
20 |
| - | ^ Input "hello" should be called "input" |
| 20 | + | ^^^^^ Input "hello" should be called "input" |
21 | 21 | `;
|
22 | 22 |
|
23 | 23 | exports[` 5`] = `
|
24 | 24 | > 1 | type Mutation { userCreate(record: CreateOneUserInput!): CreateOneUserPayload }
|
25 |
| - | ^ Input "record" should be called "input" |
| 25 | + | ^^^^^^ Input "record" should be called "input" |
26 | 26 | `;
|
27 | 27 |
|
28 | 28 | exports[` 6`] = `
|
29 | 29 | > 1 | type Mutation { userCreate(record: CreateOneUserInput!): CreateOneUserPayload }
|
30 |
| - | ^ InputType "CreateOneUserInput" name should be "userCreateInput" |
| 30 | + | ^^^^^^^^^^^^^^^^^^ InputType "CreateOneUserInput" name should be "userCreateInput" |
31 | 31 | `;
|
32 | 32 |
|
33 | 33 | exports[` 7`] = `
|
34 | 34 | > 1 | type Mutation { userCreate(record: [CreateOneUserInput]!): CreateOneUserPayload }
|
35 |
| - | ^ Input "record" should be called "input" |
| 35 | + | ^^^^^^ Input "record" should be called "input" |
36 | 36 | `;
|
37 | 37 |
|
38 | 38 | exports[` 8`] = `
|
39 | 39 | > 1 | type Mutation { userCreate(record: [CreateOneUserInput]!): CreateOneUserPayload }
|
40 |
| - | ^ InputType "CreateOneUserInput" name should be "userCreateInput" |
| 40 | + | ^^^^^^^^^^^^^^^^^^ InputType "CreateOneUserInput" name should be "userCreateInput" |
41 | 41 | `;
|
42 | 42 |
|
43 | 43 | exports[` 9`] = `
|
44 | 44 | > 1 | type Mutation { userCreate(record: [CreateOneUserInput!]!): CreateOneUserPayload }
|
45 |
| - | ^ Input "record" should be called "input" |
| 45 | + | ^^^^^^ Input "record" should be called "input" |
46 | 46 | `;
|
47 | 47 |
|
48 | 48 | exports[` 10`] = `
|
49 | 49 | > 1 | type Mutation { userCreate(record: [CreateOneUserInput!]!): CreateOneUserPayload }
|
50 |
| - | ^ InputType "CreateOneUserInput" name should be "userCreateInput" |
| 50 | + | ^^^^^^^^^^^^^^^^^^ InputType "CreateOneUserInput" name should be "userCreateInput" |
51 | 51 | `;
|
52 | 52 |
|
53 | 53 | exports[` 11`] = `
|
54 | 54 | > 1 | type Mutation { userCreate(record: [CreateOneUserInput!]): CreateOneUserPayload }
|
55 |
| - | ^ Input "record" should be called "input" |
| 55 | + | ^^^^^^ Input "record" should be called "input" |
56 | 56 | `;
|
57 | 57 |
|
58 | 58 | exports[` 12`] = `
|
59 | 59 | > 1 | type Mutation { userCreate(record: [CreateOneUserInput!]): CreateOneUserPayload }
|
60 |
| - | ^ InputType "CreateOneUserInput" name should be "userCreateInput" |
| 60 | + | ^^^^^^^^^^^^^^^^^^ InputType "CreateOneUserInput" name should be "userCreateInput" |
61 | 61 | `;
|
62 | 62 |
|
63 | 63 | exports[` 13`] = `
|
64 | 64 | > 1 | type Mutation { userCreate(record: String, test: String): String }
|
65 |
| - | ^ Input "record" should be called "input" |
| 65 | + | ^^^^^^ Input "record" should be called "input" |
66 | 66 | `;
|
67 | 67 |
|
68 | 68 | exports[` 14`] = `
|
69 | 69 | > 1 | type Mutation { userCreate(record: String, test: String): String }
|
70 |
| - | ^ InputType "String" name should be "userCreateInput" |
| 70 | + | ^^^^^^ InputType "String" name should be "userCreateInput" |
71 | 71 | `;
|
72 | 72 |
|
73 | 73 | exports[` 15`] = `
|
74 | 74 | > 1 | type Mutation { userCreate(record: String, test: String): String }
|
75 |
| - | ^ Input "test" should be called "input" |
| 75 | + | ^^^^ Input "test" should be called "input" |
76 | 76 | `;
|
77 | 77 |
|
78 | 78 | exports[` 16`] = `
|
79 | 79 | > 1 | type Mutation { userCreate(record: String, test: String): String }
|
80 |
| - | ^ InputType "String" name should be "userCreateInput" |
| 80 | + | ^^^^^^ InputType "String" name should be "userCreateInput" |
81 | 81 | `;
|
82 | 82 |
|
83 | 83 | exports[` 17`] = `
|
84 | 84 | > 1 | type Mutation { userCreate(record: String, test: String): String }
|
85 |
| - | ^ Input "record" should be called "input" |
| 85 | + | ^^^^^^ Input "record" should be called "input" |
86 | 86 | `;
|
87 | 87 |
|
88 | 88 | exports[` 18`] = `
|
89 | 89 | > 1 | type Mutation { userCreate(record: String, test: String): String }
|
90 |
| - | ^ Input "test" should be called "input" |
| 90 | + | ^^^^ Input "test" should be called "input" |
91 | 91 | `;
|
92 | 92 |
|
93 | 93 | exports[` 19`] = `
|
94 | 94 | > 1 | type Mutation { userCreate(input: String): String }
|
95 |
| - | ^ InputType "String" name should be "userCreateInput" |
| 95 | + | ^^^^^^ InputType "String" name should be "userCreateInput" |
96 | 96 | `;
|
97 | 97 |
|
98 | 98 | exports[` 20`] = `
|
99 | 99 | > 1 | type Mutation { userCreate(input: UserCreateInput): String }
|
100 |
| - | ^ InputType "UserCreateInput" name should be "userCreateInput" |
| 100 | + | ^^^^^^^^^^^^^^^ InputType "UserCreateInput" name should be "userCreateInput" |
101 | 101 | `;
|
102 | 102 |
|
103 | 103 | exports[` 21`] = `
|
104 | 104 | > 1 | type Query { getUser(input: GetUserInput): String }
|
105 |
| - | ^ InputType "GetUserInput" name should be "getUserInput" |
| 105 | + | ^^^^^^^^^^^^ InputType "GetUserInput" name should be "getUserInput" |
106 | 106 | `;
|
0 commit comments