@@ -2214,6 +2214,7 @@ type Player {
2214
2214
_count : PlayerCount
2215
2215
id : Int !
2216
2216
name : String !
2217
+ password : String !
2217
2218
player_card (cursor : Player_cardWhereUniqueInput , distinct : [Player_cardScalarFieldEnum ! ], orderBy : [Player_cardOrderByWithRelationInput ! ], skip : Int , take : Int , where : Player_cardWhereInput ): [Player_card ! ]!
2218
2219
}
2219
2220
@@ -2233,21 +2234,25 @@ type PlayerCountAggregate {
2233
2234
_all : Int !
2234
2235
id : Int !
2235
2236
name : Int !
2237
+ password : Int !
2236
2238
}
2237
2239
2238
2240
input PlayerCountOrderByAggregateInput {
2239
2241
id : SortOrder
2240
2242
name : SortOrder
2243
+ password : SortOrder
2241
2244
}
2242
2245
2243
2246
input PlayerCreateInput {
2244
2247
name : String !
2248
+ password : String !
2245
2249
player_card : Player_cardCreateNestedManyWithoutPlayerInput
2246
2250
}
2247
2251
2248
2252
input PlayerCreateManyInput {
2249
2253
id : Int
2250
2254
name : String !
2255
+ password : String !
2251
2256
}
2252
2257
2253
2258
input PlayerCreateNestedOneWithoutPlayer_cardInput {
@@ -2263,6 +2268,7 @@ input PlayerCreateOrConnectWithoutPlayer_cardInput {
2263
2268
2264
2269
input PlayerCreateWithoutPlayer_cardInput {
2265
2270
name : String !
2271
+ password : String !
2266
2272
}
2267
2273
2268
2274
type PlayerGroupBy {
@@ -2273,26 +2279,31 @@ type PlayerGroupBy {
2273
2279
_sum : PlayerSumAggregate
2274
2280
id : Int !
2275
2281
name : String !
2282
+ password : String !
2276
2283
}
2277
2284
2278
2285
type PlayerMaxAggregate {
2279
2286
id : Int
2280
2287
name : String
2288
+ password : String
2281
2289
}
2282
2290
2283
2291
input PlayerMaxOrderByAggregateInput {
2284
2292
id : SortOrder
2285
2293
name : SortOrder
2294
+ password : SortOrder
2286
2295
}
2287
2296
2288
2297
type PlayerMinAggregate {
2289
2298
id : Int
2290
2299
name : String
2300
+ password : String
2291
2301
}
2292
2302
2293
2303
input PlayerMinOrderByAggregateInput {
2294
2304
id : SortOrder
2295
2305
name : SortOrder
2306
+ password : SortOrder
2296
2307
}
2297
2308
2298
2309
input PlayerOrderByWithAggregationInput {
@@ -2303,11 +2314,13 @@ input PlayerOrderByWithAggregationInput {
2303
2314
_sum : PlayerSumOrderByAggregateInput
2304
2315
id : SortOrder
2305
2316
name : SortOrder
2317
+ password : SortOrder
2306
2318
}
2307
2319
2308
2320
input PlayerOrderByWithRelationInput {
2309
2321
id : SortOrder
2310
2322
name : SortOrder
2323
+ password : SortOrder
2311
2324
player_card : Player_cardOrderByRelationAggregateInput
2312
2325
}
2313
2326
@@ -2319,6 +2332,7 @@ input PlayerRelationFilter {
2319
2332
enum PlayerScalarFieldEnum {
2320
2333
id
2321
2334
name
2335
+ password
2322
2336
}
2323
2337
2324
2338
input PlayerScalarWhereWithAggregatesInput {
@@ -2327,6 +2341,7 @@ input PlayerScalarWhereWithAggregatesInput {
2327
2341
OR : [PlayerScalarWhereWithAggregatesInput ! ]
2328
2342
id : IntWithAggregatesFilter
2329
2343
name : StringWithAggregatesFilter
2344
+ password : StringWithAggregatesFilter
2330
2345
}
2331
2346
2332
2347
type PlayerSumAggregate {
@@ -2339,11 +2354,13 @@ input PlayerSumOrderByAggregateInput {
2339
2354
2340
2355
input PlayerUpdateInput {
2341
2356
name : StringFieldUpdateOperationsInput
2357
+ password : StringFieldUpdateOperationsInput
2342
2358
player_card : Player_cardUpdateManyWithoutPlayerNestedInput
2343
2359
}
2344
2360
2345
2361
input PlayerUpdateManyMutationInput {
2346
2362
name : StringFieldUpdateOperationsInput
2363
+ password : StringFieldUpdateOperationsInput
2347
2364
}
2348
2365
2349
2366
input PlayerUpdateOneRequiredWithoutPlayer_cardNestedInput {
@@ -2356,6 +2373,7 @@ input PlayerUpdateOneRequiredWithoutPlayer_cardNestedInput {
2356
2373
2357
2374
input PlayerUpdateWithoutPlayer_cardInput {
2358
2375
name : StringFieldUpdateOperationsInput
2376
+ password : StringFieldUpdateOperationsInput
2359
2377
}
2360
2378
2361
2379
input PlayerUpsertWithoutPlayer_cardInput {
@@ -2369,6 +2387,7 @@ input PlayerWhereInput {
2369
2387
OR : [PlayerWhereInput ! ]
2370
2388
id : IntFilter
2371
2389
name : StringFilter
2390
+ password : StringFilter
2372
2391
player_card : Player_cardListRelationFilter
2373
2392
}
2374
2393
0 commit comments