@@ -67,21 +67,66 @@ enum CustomType {
67
67
type Mutation {
68
68
createBlog(input: [BlogCreateInput!]!): [Blog]
69
69
createBlogTag(input: [BlogTagCreateInput!]!): [BlogTag]
70
+ createMysql(input: [MysqlCreateInput!]!): [Mysql]
70
71
createPg(input: [PgCreateInput!]!): [Pg]
71
72
createPhoto(input: [PhotoCreateInput!]!): [Photo]
72
73
createPhotoset(input: [PhotosetCreateInput!]!): [Photoset]
73
74
deleteBlog(input: [BlogMutateInput!]!): [Boolean]
74
75
deleteBlogTag(input: [BlogTagMutateInput!]!): [Boolean]
76
+ deleteMysql(input: [MysqlMutateInput!]!): [Boolean]
75
77
deletePg(input: [PgMutateInput!]!): [Boolean]
76
78
deletePhoto(input: [PhotoMutateInput!]!): [Boolean]
77
79
deletePhotoset(input: [PhotosetMutateInput!]!): [Boolean]
78
80
updateBlog(input: [BlogMutateInput!]!): [Blog]
79
81
updateBlogTag(input: [BlogTagMutateInput!]!): [BlogTag]
82
+ updateMysql(input: [MysqlMutateInput!]!): [Mysql]
80
83
updatePg(input: [PgMutateInput!]!): [Pg]
81
84
updatePhoto(input: [PhotoMutateInput!]!): [Photo]
82
85
updatePhotoset(input: [PhotosetMutateInput!]!): [Photoset]
83
86
}
84
87
88
+ type Mysql {
89
+ another_enum_column: MysqlAnotherEnumColumn!
90
+ enum_column: MysqlEnumColumn!
91
+ id: String!
92
+ timestamp_with_tz: DateTime
93
+ timestamp_without_tz: DateTime!
94
+ }
95
+
96
+ enum MysqlAnotherEnumColumn {
97
+ bar
98
+ baz_space
99
+ foo
100
+ }
101
+
102
+ input MysqlCreateInput {
103
+ another_enum_column: MysqlAnotherEnumColumn!
104
+ enum_column: MysqlEnumColumn!
105
+ timestamp_with_tz: DateTime
106
+ timestamp_without_tz: DateTime!
107
+ }
108
+
109
+ enum MysqlEnumColumn {
110
+ bar
111
+ baz_space
112
+ foo
113
+ }
114
+
115
+ input MysqlMutateInput {
116
+ another_enum_column: MysqlAnotherEnumColumn
117
+ enum_column: MysqlEnumColumn
118
+ id: String!
119
+ timestamp_with_tz: DateTime
120
+ timestamp_without_tz: DateTime
121
+ }
122
+
123
+ input MysqlSearchInput {
124
+ another_enum_column: MysqlAnotherEnumColumn
125
+ enum_column: MysqlEnumColumn
126
+ timestamp_with_tz: DateTime
127
+ timestamp_without_tz: DateTime
128
+ }
129
+
85
130
type Pg {
86
131
another_enum_column: CustomType!
87
132
enum_column: CustomType!
@@ -279,6 +324,7 @@ input PhotosetSearchInput {
279
324
type Query {
280
325
blog(id: [Int!]!): [Blog]
281
326
blogTag(id: [Int!]!): [BlogTag]
327
+ mysql(id: [String!]!): [Mysql]
282
328
pg(id: [String!]!): [Pg]
283
329
photo(id: [String!]!): [Photo]
284
330
photoset(id: [String!]!): [Photoset]
@@ -287,6 +333,8 @@ type Query {
287
333
"input to search"
288
334
searchBlogTag(input: BlogTagSearchInput!): [BlogTag]
289
335
"input to search"
336
+ searchMysql(input: MysqlSearchInput!): [Mysql]
337
+ "input to search"
290
338
searchPg(input: PgSearchInput!): [Pg]
291
339
"input to search"
292
340
searchPhoto(input: PhotoSearchInput!): [Photo]
0 commit comments