@naturalcycles/abba 1.7.0 → 1.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/dist/abba.d.ts +45 -72
  2. package/dist/abba.js +119 -165
  3. package/dist/dao/bucket.dao.d.ts +5 -0
  4. package/dist/dao/bucket.dao.js +15 -0
  5. package/dist/dao/experiment.dao.d.ts +10 -0
  6. package/dist/dao/experiment.dao.js +19 -0
  7. package/dist/dao/userAssignment.dao.d.ts +5 -0
  8. package/dist/dao/userAssignment.dao.js +15 -0
  9. package/dist/index.d.ts +0 -1
  10. package/dist/index.js +1 -1
  11. package/dist/migrations/init.sql +47 -0
  12. package/dist/types.d.ts +30 -7
  13. package/dist/util.d.ts +5 -21
  14. package/dist/util.js +0 -16
  15. package/package.json +9 -9
  16. package/readme.md +14 -15
  17. package/src/abba.ts +160 -191
  18. package/src/dao/bucket.dao.ts +13 -0
  19. package/src/dao/experiment.dao.ts +22 -0
  20. package/src/dao/userAssignment.dao.ts +13 -0
  21. package/src/index.ts +0 -3
  22. package/src/migrations/init.sql +47 -0
  23. package/src/types.ts +41 -7
  24. package/src/util.ts +5 -21
  25. package/dist/prisma-output/index-browser.js +0 -141
  26. package/dist/prisma-output/index.d.ts +0 -5526
  27. package/dist/prisma-output/index.js +0 -217
  28. package/dist/prisma-output/libquery_engine-darwin-arm64.dylib.node +0 -0
  29. package/dist/prisma-output/libquery_engine-darwin.dylib.node +0 -0
  30. package/dist/prisma-output/libquery_engine-debian-openssl-1.1.x.so.node +0 -0
  31. package/dist/prisma-output/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
  32. package/dist/prisma-output/runtime/esm/index-browser.mjs +0 -2370
  33. package/dist/prisma-output/runtime/esm/index.mjs +0 -40587
  34. package/dist/prisma-output/runtime/esm/proxy.mjs +0 -113
  35. package/dist/prisma-output/runtime/index-browser.d.ts +0 -269
  36. package/dist/prisma-output/runtime/index-browser.js +0 -2621
  37. package/dist/prisma-output/runtime/index.d.ts +0 -1384
  38. package/dist/prisma-output/runtime/index.js +0 -59183
  39. package/dist/prisma-output/runtime/proxy.d.ts +0 -1384
  40. package/dist/prisma-output/runtime/proxy.js +0 -13576
  41. package/dist/prisma-output/schema.prisma +0 -47
  42. package/src/prisma-output/index-browser.js +0 -141
  43. package/src/prisma-output/index.d.ts +0 -5526
  44. package/src/prisma-output/index.js +0 -217
  45. package/src/prisma-output/libquery_engine-darwin-arm64.dylib.node +0 -0
  46. package/src/prisma-output/libquery_engine-darwin.dylib.node +0 -0
  47. package/src/prisma-output/libquery_engine-debian-openssl-1.1.x.so.node +0 -0
  48. package/src/prisma-output/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
  49. package/src/prisma-output/runtime/esm/index-browser.mjs +0 -2370
  50. package/src/prisma-output/runtime/esm/index.mjs +0 -40587
  51. package/src/prisma-output/runtime/esm/proxy.mjs +0 -113
  52. package/src/prisma-output/runtime/index-browser.d.ts +0 -269
  53. package/src/prisma-output/runtime/index-browser.js +0 -2621
  54. package/src/prisma-output/runtime/index.d.ts +0 -1384
  55. package/src/prisma-output/runtime/index.js +0 -59183
  56. package/src/prisma-output/runtime/proxy.d.ts +0 -1384
  57. package/src/prisma-output/runtime/proxy.js +0 -13576
  58. package/src/prisma-output/schema.prisma +0 -47
@@ -1,217 +0,0 @@
1
- Object.defineProperty(exports, '__esModule', { value: true })
2
-
3
- const {
4
- PrismaClientKnownRequestError,
5
- PrismaClientUnknownRequestError,
6
- PrismaClientRustPanicError,
7
- PrismaClientInitializationError,
8
- PrismaClientValidationError,
9
- decompressFromBase64,
10
- getPrismaClient,
11
- sqltag,
12
- empty,
13
- join,
14
- raw,
15
- Decimal,
16
- } = require('./runtime/index')
17
-
18
- const Prisma = {}
19
-
20
- exports.Prisma = Prisma
21
-
22
- /**
23
- * Prisma Client JS version: 3.13.0
24
- * Query Engine version: efdf9b1183dddfd4258cd181a72125755215ab7b
25
- */
26
- Prisma.prismaVersion = {
27
- client: '3.13.0',
28
- engine: 'efdf9b1183dddfd4258cd181a72125755215ab7b',
29
- }
30
-
31
- Prisma.PrismaClientKnownRequestError = PrismaClientKnownRequestError
32
- Prisma.PrismaClientUnknownRequestError = PrismaClientUnknownRequestError
33
- Prisma.PrismaClientRustPanicError = PrismaClientRustPanicError
34
- Prisma.PrismaClientInitializationError = PrismaClientInitializationError
35
- Prisma.PrismaClientValidationError = PrismaClientValidationError
36
- Prisma.Decimal = Decimal
37
-
38
- /**
39
- * Re-export of sql-template-tag
40
- */
41
- Prisma.sql = sqltag
42
- Prisma.empty = empty
43
- Prisma.join = join
44
- Prisma.raw = raw
45
- Prisma.validator = () => val => val
46
-
47
- /**
48
- * Shorthand utilities for JSON filtering
49
- */
50
- Prisma.DbNull = 'DbNull'
51
- Prisma.JsonNull = 'JsonNull'
52
- Prisma.AnyNull = 'AnyNull'
53
-
54
- const path = require('path')
55
-
56
- const { findSync } = require('./runtime')
57
- const fs = require('fs')
58
-
59
- // some frameworks or bundlers replace or totally remove __dirname
60
- const hasDirname = typeof __dirname !== 'undefined' && __dirname !== '/'
61
-
62
- // will work in most cases, ie. if the client has not been bundled
63
- const regularDirname =
64
- hasDirname && fs.existsSync(path.join(__dirname, 'schema.prisma')) && __dirname
65
-
66
- // if the client has been bundled, we need to look for the folders
67
- const foundDirname =
68
- !regularDirname &&
69
- findSync(process.cwd(), ['src/prisma-output', 'prisma-output'], ['d'], ['d'], 1)[0]
70
-
71
- const dirname = regularDirname || foundDirname || __dirname
72
- /**
73
- * Enums
74
- */
75
- // Based on
76
- // https://github.com/microsoft/TypeScript/issues/3192#issuecomment-261720275
77
- function makeEnum(x) {
78
- return x
79
- }
80
-
81
- exports.Prisma.BucketScalarFieldEnum = makeEnum({
82
- id: 'id',
83
- experimentId: 'experimentId',
84
- key: 'key',
85
- ratio: 'ratio',
86
- createdAt: 'createdAt',
87
- updatedAt: 'updatedAt',
88
- })
89
-
90
- exports.Prisma.ExperimentScalarFieldEnum = makeEnum({
91
- id: 'id',
92
- name: 'name',
93
- status: 'status',
94
- sampling: 'sampling',
95
- createdAt: 'createdAt',
96
- updatedAt: 'updatedAt',
97
- description: 'description',
98
- rules: 'rules',
99
- })
100
-
101
- exports.Prisma.UserAssignmentScalarFieldEnum = makeEnum({
102
- id: 'id',
103
- userId: 'userId',
104
- experimentId: 'experimentId',
105
- bucketId: 'bucketId',
106
- createdAt: 'createdAt',
107
- updatedAt: 'updatedAt',
108
- })
109
-
110
- exports.Prisma.SortOrder = makeEnum({
111
- asc: 'asc',
112
- desc: 'desc',
113
- })
114
-
115
- exports.Prisma.NullableJsonNullValueInput = makeEnum({
116
- DbNull: 'DbNull',
117
- JsonNull: 'JsonNull',
118
- })
119
-
120
- exports.Prisma.JsonNullValueFilter = makeEnum({
121
- DbNull: 'DbNull',
122
- JsonNull: 'JsonNull',
123
- AnyNull: 'AnyNull',
124
- })
125
-
126
- exports.Prisma.ModelName = makeEnum({
127
- Bucket: 'Bucket',
128
- Experiment: 'Experiment',
129
- UserAssignment: 'UserAssignment',
130
- })
131
-
132
- const dmmfString =
133
- '{"datamodel":{"enums":[],"models":[{"name":"Bucket","dbName":null,"fields":[{"name":"id","kind":"scalar","isList":false,"isRequired":true,"isUnique":false,"isId":true,"isReadOnly":false,"type":"Int","hasDefaultValue":true,"default":{"name":"autoincrement","args":[]},"isGenerated":false,"isUpdatedAt":false},{"name":"experimentId","kind":"scalar","isList":false,"isRequired":true,"isUnique":false,"isId":false,"isReadOnly":true,"type":"Int","hasDefaultValue":false,"isGenerated":false,"isUpdatedAt":false},{"name":"key","kind":"scalar","isList":false,"isRequired":true,"isUnique":false,"isId":false,"isReadOnly":false,"type":"String","hasDefaultValue":false,"isGenerated":false,"isUpdatedAt":false},{"name":"ratio","kind":"scalar","isList":false,"isRequired":true,"isUnique":false,"isId":false,"isReadOnly":false,"type":"Int","hasDefaultValue":false,"isGenerated":false,"isUpdatedAt":false},{"name":"createdAt","kind":"scalar","isList":false,"isRequired":true,"isUnique":false,"isId":false,"isReadOnly":false,"type":"DateTime","hasDefaultValue":true,"default":{"name":"now","args":[]},"isGenerated":false,"isUpdatedAt":false},{"name":"updatedAt","kind":"scalar","isList":false,"isRequired":true,"isUnique":false,"isId":false,"isReadOnly":false,"type":"DateTime","hasDefaultValue":false,"isGenerated":false,"isUpdatedAt":true},{"name":"experiment","kind":"object","isList":false,"isRequired":true,"isUnique":false,"isId":false,"isReadOnly":false,"type":"Experiment","hasDefaultValue":false,"relationName":"BucketToExperiment","relationFromFields":["experimentId"],"relationToFields":["id"],"relationOnDelete":"Cascade","isGenerated":false,"isUpdatedAt":false},{"name":"userAssignments","kind":"object","isList":true,"isRequired":true,"isUnique":false,"isId":false,"isReadOnly":false,"type":"UserAssignment","hasDefaultValue":false,"relationName":"BucketToUserAssignment","relationFromFields":[],"relationToFields":[],"isGenerated":false,"isUpdatedAt":false}],"isGenerated":false,"primaryKey":null,"uniqueFields":[],"uniqueIndexes":[]},{"name":"Experiment","dbName":null,"fields":[{"name":"id","kind":"scalar","isList":false,"isRequired":true,"isUnique":false,"isId":true,"isReadOnly":false,"type":"Int","hasDefaultValue":true,"default":{"name":"autoincrement","args":[]},"isGenerated":false,"isUpdatedAt":false},{"name":"name","kind":"scalar","isList":false,"isRequired":true,"isUnique":false,"isId":false,"isReadOnly":false,"type":"String","hasDefaultValue":false,"isGenerated":false,"isUpdatedAt":false},{"name":"status","kind":"scalar","isList":false,"isRequired":true,"isUnique":false,"isId":false,"isReadOnly":false,"type":"Int","hasDefaultValue":false,"isGenerated":false,"isUpdatedAt":false},{"name":"sampling","kind":"scalar","isList":false,"isRequired":true,"isUnique":false,"isId":false,"isReadOnly":false,"type":"Int","hasDefaultValue":false,"isGenerated":false,"isUpdatedAt":false},{"name":"createdAt","kind":"scalar","isList":false,"isRequired":true,"isUnique":false,"isId":false,"isReadOnly":false,"type":"DateTime","hasDefaultValue":true,"default":{"name":"now","args":[]},"isGenerated":false,"isUpdatedAt":false},{"name":"updatedAt","kind":"scalar","isList":false,"isRequired":true,"isUnique":false,"isId":false,"isReadOnly":false,"type":"DateTime","hasDefaultValue":false,"isGenerated":false,"isUpdatedAt":true},{"name":"description","kind":"scalar","isList":false,"isRequired":false,"isUnique":false,"isId":false,"isReadOnly":false,"type":"String","hasDefaultValue":false,"isGenerated":false,"isUpdatedAt":false},{"name":"rules","kind":"scalar","isList":false,"isRequired":false,"isUnique":false,"isId":false,"isReadOnly":false,"type":"Json","hasDefaultValue":false,"isGenerated":false,"isUpdatedAt":false},{"name":"buckets","kind":"object","isList":true,"isRequired":true,"isUnique":false,"isId":false,"isReadOnly":false,"type":"Bucket","hasDefaultValue":false,"relationName":"BucketToExperiment","relationFromFields":[],"relationToFields":[],"isGenerated":false,"isUpdatedAt":false},{"name":"userAssignments","kind":"object","isList":true,"isRequired":true,"isUnique":false,"isId":false,"isReadOnly":false,"type":"UserAssignment","hasDefaultValue":false,"relationName":"ExperimentToUserAssignment","relationFromFields":[],"relationToFields":[],"isGenerated":false,"isUpdatedAt":false}],"isGenerated":false,"primaryKey":null,"uniqueFields":[],"uniqueIndexes":[]},{"name":"UserAssignment","dbName":null,"fields":[{"name":"id","kind":"scalar","isList":false,"isRequired":true,"isUnique":false,"isId":true,"isReadOnly":false,"type":"Int","hasDefaultValue":true,"default":{"name":"autoincrement","args":[]},"isGenerated":false,"isUpdatedAt":false},{"name":"userId","kind":"scalar","isList":false,"isRequired":true,"isUnique":false,"isId":false,"isReadOnly":false,"type":"String","hasDefaultValue":false,"isGenerated":false,"isUpdatedAt":false},{"name":"experimentId","kind":"scalar","isList":false,"isRequired":true,"isUnique":false,"isId":false,"isReadOnly":true,"type":"Int","hasDefaultValue":false,"isGenerated":false,"isUpdatedAt":false},{"name":"bucketId","kind":"scalar","isList":false,"isRequired":false,"isUnique":false,"isId":false,"isReadOnly":true,"type":"Int","hasDefaultValue":false,"isGenerated":false,"isUpdatedAt":false},{"name":"createdAt","kind":"scalar","isList":false,"isRequired":true,"isUnique":false,"isId":false,"isReadOnly":false,"type":"DateTime","hasDefaultValue":true,"default":{"name":"now","args":[]},"isGenerated":false,"isUpdatedAt":false},{"name":"updatedAt","kind":"scalar","isList":false,"isRequired":true,"isUnique":false,"isId":false,"isReadOnly":false,"type":"DateTime","hasDefaultValue":false,"isGenerated":false,"isUpdatedAt":true},{"name":"bucket","kind":"object","isList":false,"isRequired":false,"isUnique":false,"isId":false,"isReadOnly":false,"type":"Bucket","hasDefaultValue":false,"relationName":"BucketToUserAssignment","relationFromFields":["bucketId"],"relationToFields":["id"],"relationOnDelete":"Cascade","isGenerated":false,"isUpdatedAt":false},{"name":"experiment","kind":"object","isList":false,"isRequired":true,"isUnique":false,"isId":false,"isReadOnly":false,"type":"Experiment","hasDefaultValue":false,"relationName":"ExperimentToUserAssignment","relationFromFields":["experimentId"],"relationToFields":["id"],"relationOnDelete":"Cascade","isGenerated":false,"isUpdatedAt":false}],"isGenerated":false,"primaryKey":null,"uniqueFields":[["userId","experimentId"]],"uniqueIndexes":[{"name":null,"fields":["userId","experimentId"]}]}],"types":[]},"schema":{"inputObjectTypes":{"prisma":[{"name":"BucketWhereInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"AND","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"OR","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"NOT","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"key","isRequired":false,"isNullable":false,"inputTypes":[{"type":"StringFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"String","location":"scalar","isList":false}]},{"name":"ratio","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTimeFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTimeFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"DateTime","location":"scalar","isList":false}]},{"name":"experiment","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentRelationFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"userAssignments","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentListRelationFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketOrderByWithRelationInput","constraints":{"maxNumFields":1,"minNumFields":0},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"key","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"ratio","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"experiment","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"userAssignments","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentOrderByRelationAggregateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketWhereUniqueInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]}]},{"name":"BucketOrderByWithAggregationInput","constraints":{"maxNumFields":1,"minNumFields":0},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"key","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"ratio","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"_count","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCountOrderByAggregateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_avg","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketAvgOrderByAggregateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_max","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketMaxOrderByAggregateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_min","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketMinOrderByAggregateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_sum","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketSumOrderByAggregateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketScalarWhereWithAggregatesInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"AND","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketScalarWhereWithAggregatesInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketScalarWhereWithAggregatesInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"OR","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketScalarWhereWithAggregatesInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"NOT","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketScalarWhereWithAggregatesInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketScalarWhereWithAggregatesInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"key","isRequired":false,"isNullable":false,"inputTypes":[{"type":"StringWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"String","location":"scalar","isList":false}]},{"name":"ratio","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTimeWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTimeWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"DateTime","location":"scalar","isList":false}]}]},{"name":"ExperimentWhereInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"AND","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"OR","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"NOT","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"name","isRequired":false,"isNullable":false,"inputTypes":[{"type":"StringFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"String","location":"scalar","isList":false}]},{"name":"status","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"sampling","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTimeFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTimeFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"DateTime","location":"scalar","isList":false}]},{"name":"description","isRequired":false,"isNullable":true,"inputTypes":[{"type":"StringNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"String","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"rules","isRequired":false,"isNullable":false,"inputTypes":[{"type":"JsonNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"buckets","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketListRelationFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"userAssignments","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentListRelationFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentOrderByWithRelationInput","constraints":{"maxNumFields":1,"minNumFields":0},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"name","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"status","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"sampling","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"description","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"rules","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"buckets","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketOrderByRelationAggregateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"userAssignments","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentOrderByRelationAggregateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentWhereUniqueInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]}]},{"name":"ExperimentOrderByWithAggregationInput","constraints":{"maxNumFields":1,"minNumFields":0},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"name","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"status","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"sampling","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"description","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"rules","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"_count","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentCountOrderByAggregateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_avg","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentAvgOrderByAggregateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_max","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentMaxOrderByAggregateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_min","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentMinOrderByAggregateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_sum","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentSumOrderByAggregateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentScalarWhereWithAggregatesInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"AND","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentScalarWhereWithAggregatesInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentScalarWhereWithAggregatesInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"OR","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentScalarWhereWithAggregatesInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"NOT","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentScalarWhereWithAggregatesInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentScalarWhereWithAggregatesInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"name","isRequired":false,"isNullable":false,"inputTypes":[{"type":"StringWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"String","location":"scalar","isList":false}]},{"name":"status","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"sampling","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTimeWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTimeWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"DateTime","location":"scalar","isList":false}]},{"name":"description","isRequired":false,"isNullable":true,"inputTypes":[{"type":"StringNullableWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"String","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"rules","isRequired":false,"isNullable":false,"inputTypes":[{"type":"JsonNullableWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentWhereInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"AND","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"OR","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"NOT","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"userId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"StringFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"String","location":"scalar","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"bucketId","isRequired":false,"isNullable":true,"inputTypes":[{"type":"IntNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTimeFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTimeFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"DateTime","location":"scalar","isList":false}]},{"name":"bucket","isRequired":false,"isNullable":true,"inputTypes":[{"type":"BucketRelationFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"experiment","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentRelationFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentOrderByWithRelationInput","constraints":{"maxNumFields":1,"minNumFields":0},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"userId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"bucketId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"bucket","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"experiment","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentWhereUniqueInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"userId_experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUserIdExperimentIdCompoundUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentOrderByWithAggregationInput","constraints":{"maxNumFields":1,"minNumFields":0},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"userId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"bucketId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"_count","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCountOrderByAggregateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_avg","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentAvgOrderByAggregateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_max","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentMaxOrderByAggregateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_min","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentMinOrderByAggregateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_sum","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentSumOrderByAggregateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentScalarWhereWithAggregatesInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"AND","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentScalarWhereWithAggregatesInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentScalarWhereWithAggregatesInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"OR","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentScalarWhereWithAggregatesInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"NOT","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentScalarWhereWithAggregatesInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentScalarWhereWithAggregatesInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"userId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"StringWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"String","location":"scalar","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"bucketId","isRequired":false,"isNullable":true,"inputTypes":[{"type":"IntNullableWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTimeWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTimeWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"DateTime","location":"scalar","isList":false}]}]},{"name":"BucketCreateInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"key","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"ratio","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"experiment","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentCreateNestedOneWithoutBucketsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"userAssignments","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateNestedManyWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketUncheckedCreateInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"experimentId","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"key","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"ratio","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"userAssignments","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUncheckedCreateNestedManyWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketUpdateInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"key","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"ratio","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"experiment","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentUpdateOneRequiredWithoutBucketsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"userAssignments","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateManyWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketUncheckedUpdateInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"key","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"ratio","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"userAssignments","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUncheckedUpdateManyWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketCreateManyInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"experimentId","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"key","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"ratio","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]}]},{"name":"BucketUpdateManyMutationInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"key","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"ratio","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketUncheckedUpdateManyInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"key","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"ratio","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentCreateInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"name","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"status","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"sampling","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"description","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"rules","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NullableJsonNullValueInput","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]},{"name":"buckets","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCreateNestedManyWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"userAssignments","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateNestedManyWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentUncheckedCreateInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"name","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"status","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"sampling","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"description","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"rules","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NullableJsonNullValueInput","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]},{"name":"buckets","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketUncheckedCreateNestedManyWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"userAssignments","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUncheckedCreateNestedManyWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentUpdateInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"name","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"status","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"sampling","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"description","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"NullableStringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"rules","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NullableJsonNullValueInput","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]},{"name":"buckets","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketUpdateManyWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"userAssignments","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateManyWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentUncheckedUpdateInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"name","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"status","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"sampling","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"description","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"NullableStringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"rules","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NullableJsonNullValueInput","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]},{"name":"buckets","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketUncheckedUpdateManyWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"userAssignments","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUncheckedUpdateManyWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentCreateManyInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"name","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"status","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"sampling","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"description","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"rules","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NullableJsonNullValueInput","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]}]},{"name":"ExperimentUpdateManyMutationInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"name","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"status","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"sampling","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"description","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"NullableStringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"rules","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NullableJsonNullValueInput","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]}]},{"name":"ExperimentUncheckedUpdateManyInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"name","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"status","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"sampling","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"description","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"NullableStringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"rules","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NullableJsonNullValueInput","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]}]},{"name":"UserAssignmentCreateInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"userId","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"bucket","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCreateNestedOneWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"experiment","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentCreateNestedOneWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentUncheckedCreateInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"userId","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"experimentId","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"bucketId","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]}]},{"name":"UserAssignmentUpdateInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"userId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"bucket","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketUpdateOneWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"experiment","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentUpdateOneRequiredWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentUncheckedUpdateInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"userId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"bucketId","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"NullableIntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentCreateManyInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"userId","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"experimentId","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"bucketId","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]}]},{"name":"UserAssignmentUpdateManyMutationInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"userId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentUncheckedUpdateManyInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"userId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"bucketId","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"NullableIntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"IntFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":true}]},{"name":"notIn","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":true}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"NestedIntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"StringFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":true}]},{"name":"notIn","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":true}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"contains","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"startsWith","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"endsWith","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"NestedStringFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"DateTimeFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":true}]},{"name":"notIn","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":true}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"NestedDateTimeFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentRelationFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"is","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"isNot","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentListRelationFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"every","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"some","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"none","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentOrderByRelationAggregateInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"_count","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]}]},{"name":"BucketCountOrderByAggregateInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"key","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"ratio","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]}]},{"name":"BucketAvgOrderByAggregateInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"ratio","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]}]},{"name":"BucketMaxOrderByAggregateInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"key","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"ratio","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]}]},{"name":"BucketMinOrderByAggregateInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"key","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"ratio","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]}]},{"name":"BucketSumOrderByAggregateInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"ratio","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]}]},{"name":"IntWithAggregatesFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":true}]},{"name":"notIn","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":true}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"NestedIntWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_count","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_avg","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedFloatFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_sum","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_min","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_max","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"StringWithAggregatesFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":true}]},{"name":"notIn","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":true}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"contains","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"startsWith","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"endsWith","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"NestedStringWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_count","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_min","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedStringFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_max","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedStringFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"DateTimeWithAggregatesFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":true}]},{"name":"notIn","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":true}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"NestedDateTimeWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_count","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_min","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedDateTimeFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_max","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedDateTimeFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"StringNullableFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":true},{"type":"Null","location":"scalar","isList":false}]},{"name":"notIn","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":true},{"type":"Null","location":"scalar","isList":false}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"contains","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"startsWith","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"endsWith","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"NestedStringNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]}]},{"name":"JsonNullableFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":false,"inputTypes":[{"type":"JsonNullValueFilter","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":false,"inputTypes":[{"type":"JsonNullValueFilter","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]}]},{"name":"BucketListRelationFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"every","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"some","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"none","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketOrderByRelationAggregateInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"_count","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]}]},{"name":"ExperimentCountOrderByAggregateInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"name","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"status","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"sampling","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"description","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"rules","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]}]},{"name":"ExperimentAvgOrderByAggregateInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"status","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"sampling","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]}]},{"name":"ExperimentMaxOrderByAggregateInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"name","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"status","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"sampling","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"description","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]}]},{"name":"ExperimentMinOrderByAggregateInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"name","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"status","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"sampling","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"description","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]}]},{"name":"ExperimentSumOrderByAggregateInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"status","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"sampling","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]}]},{"name":"StringNullableWithAggregatesFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":true},{"type":"Null","location":"scalar","isList":false}]},{"name":"notIn","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":true},{"type":"Null","location":"scalar","isList":false}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"contains","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"startsWith","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"endsWith","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"NestedStringNullableWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"_count","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_min","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedStringNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_max","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedStringNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"JsonNullableWithAggregatesFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":false,"inputTypes":[{"type":"JsonNullValueFilter","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":false,"inputTypes":[{"type":"JsonNullValueFilter","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]},{"name":"_count","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_min","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedJsonNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_max","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedJsonNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"IntNullableFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":true},{"type":"Null","location":"scalar","isList":false}]},{"name":"notIn","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":true},{"type":"Null","location":"scalar","isList":false}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"NestedIntNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]}]},{"name":"BucketRelationFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"is","isRequired":false,"isNullable":true,"inputTypes":[{"type":"BucketWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"isNot","isRequired":false,"isNullable":true,"inputTypes":[{"type":"BucketWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]}]},{"name":"UserAssignmentUserIdExperimentIdCompoundUniqueInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"userId","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"experimentId","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]}]},{"name":"UserAssignmentCountOrderByAggregateInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"userId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"bucketId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]}]},{"name":"UserAssignmentAvgOrderByAggregateInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"bucketId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]}]},{"name":"UserAssignmentMaxOrderByAggregateInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"userId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"bucketId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]}]},{"name":"UserAssignmentMinOrderByAggregateInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"userId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"bucketId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]}]},{"name":"UserAssignmentSumOrderByAggregateInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"bucketId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"SortOrder","namespace":"prisma","location":"enumTypes","isList":false}]}]},{"name":"IntNullableWithAggregatesFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":true},{"type":"Null","location":"scalar","isList":false}]},{"name":"notIn","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":true},{"type":"Null","location":"scalar","isList":false}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"NestedIntNullableWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"_count","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_avg","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedFloatNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_sum","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_min","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_max","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentCreateNestedOneWithoutBucketsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"create","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentCreateWithoutBucketsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentUncheckedCreateWithoutBucketsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"connectOrCreate","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentCreateOrConnectWithoutBucketsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"connect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentCreateNestedManyWithoutBucketInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"create","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentCreateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"UserAssignmentUncheckedCreateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedCreateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"connectOrCreate","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateOrConnectWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentCreateOrConnectWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"createMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateManyBucketInputEnvelope","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"connect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]}]},{"name":"UserAssignmentUncheckedCreateNestedManyWithoutBucketInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"create","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentCreateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"UserAssignmentUncheckedCreateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedCreateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"connectOrCreate","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateOrConnectWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentCreateOrConnectWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"createMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateManyBucketInputEnvelope","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"connect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]}]},{"name":"StringFieldUpdateOperationsInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"set","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]}]},{"name":"IntFieldUpdateOperationsInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"set","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"increment","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"decrement","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"multiply","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"divide","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]}]},{"name":"DateTimeFieldUpdateOperationsInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"set","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]}]},{"name":"ExperimentUpdateOneRequiredWithoutBucketsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"create","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentCreateWithoutBucketsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentUncheckedCreateWithoutBucketsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"connectOrCreate","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentCreateOrConnectWithoutBucketsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"upsert","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentUpsertWithoutBucketsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"connect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"update","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentUpdateWithoutBucketsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentUncheckedUpdateWithoutBucketsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentUpdateManyWithoutBucketInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"create","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentCreateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"UserAssignmentUncheckedCreateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedCreateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"connectOrCreate","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateOrConnectWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentCreateOrConnectWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"upsert","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpsertWithWhereUniqueWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUpsertWithWhereUniqueWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"createMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateManyBucketInputEnvelope","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"set","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"disconnect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"delete","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"connect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"update","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateWithWhereUniqueWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUpdateWithWhereUniqueWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"updateMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateManyWithWhereWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUpdateManyWithWhereWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"deleteMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]}]},{"name":"UserAssignmentUncheckedUpdateManyWithoutBucketInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"create","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentCreateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"UserAssignmentUncheckedCreateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedCreateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"connectOrCreate","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateOrConnectWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentCreateOrConnectWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"upsert","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpsertWithWhereUniqueWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUpsertWithWhereUniqueWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"createMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateManyBucketInputEnvelope","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"set","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"disconnect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"delete","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"connect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"update","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateWithWhereUniqueWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUpdateWithWhereUniqueWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"updateMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateManyWithWhereWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUpdateManyWithWhereWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"deleteMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]}]},{"name":"BucketCreateNestedManyWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"create","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"BucketUncheckedCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUncheckedCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"connectOrCreate","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCreateOrConnectWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketCreateOrConnectWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"createMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCreateManyExperimentInputEnvelope","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"connect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]}]},{"name":"UserAssignmentCreateNestedManyWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"create","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"UserAssignmentUncheckedCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"connectOrCreate","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateOrConnectWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentCreateOrConnectWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"createMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateManyExperimentInputEnvelope","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"connect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]}]},{"name":"BucketUncheckedCreateNestedManyWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"create","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"BucketUncheckedCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUncheckedCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"connectOrCreate","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCreateOrConnectWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketCreateOrConnectWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"createMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCreateManyExperimentInputEnvelope","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"connect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]}]},{"name":"UserAssignmentUncheckedCreateNestedManyWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"create","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"UserAssignmentUncheckedCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"connectOrCreate","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateOrConnectWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentCreateOrConnectWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"createMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateManyExperimentInputEnvelope","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"connect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]}]},{"name":"NullableStringFieldUpdateOperationsInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"set","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]}]},{"name":"BucketUpdateManyWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"create","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"BucketUncheckedCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUncheckedCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"connectOrCreate","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCreateOrConnectWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketCreateOrConnectWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"upsert","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketUpsertWithWhereUniqueWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUpsertWithWhereUniqueWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"createMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCreateManyExperimentInputEnvelope","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"set","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"disconnect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"delete","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"connect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"update","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketUpdateWithWhereUniqueWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUpdateWithWhereUniqueWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"updateMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketUpdateManyWithWhereWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUpdateManyWithWhereWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"deleteMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]}]},{"name":"UserAssignmentUpdateManyWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"create","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"UserAssignmentUncheckedCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"connectOrCreate","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateOrConnectWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentCreateOrConnectWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"upsert","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpsertWithWhereUniqueWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUpsertWithWhereUniqueWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"createMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateManyExperimentInputEnvelope","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"set","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"disconnect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"delete","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"connect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"update","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateWithWhereUniqueWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUpdateWithWhereUniqueWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"updateMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateManyWithWhereWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUpdateManyWithWhereWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"deleteMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]}]},{"name":"BucketUncheckedUpdateManyWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"create","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"BucketUncheckedCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUncheckedCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"connectOrCreate","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCreateOrConnectWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketCreateOrConnectWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"upsert","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketUpsertWithWhereUniqueWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUpsertWithWhereUniqueWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"createMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCreateManyExperimentInputEnvelope","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"set","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"disconnect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"delete","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"connect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"update","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketUpdateWithWhereUniqueWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUpdateWithWhereUniqueWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"updateMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketUpdateManyWithWhereWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUpdateManyWithWhereWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"deleteMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]}]},{"name":"UserAssignmentUncheckedUpdateManyWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"create","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"UserAssignmentUncheckedCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"connectOrCreate","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateOrConnectWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentCreateOrConnectWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"upsert","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpsertWithWhereUniqueWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUpsertWithWhereUniqueWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"createMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateManyExperimentInputEnvelope","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"set","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"disconnect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"delete","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"connect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"update","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateWithWhereUniqueWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUpdateWithWhereUniqueWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"updateMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateManyWithWhereWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUpdateManyWithWhereWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"deleteMany","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]}]},{"name":"BucketCreateNestedOneWithoutUserAssignmentsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"create","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCreateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUncheckedCreateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"connectOrCreate","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCreateOrConnectWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"connect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentCreateNestedOneWithoutUserAssignmentsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"create","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentCreateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentUncheckedCreateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"connectOrCreate","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentCreateOrConnectWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"connect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketUpdateOneWithoutUserAssignmentsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"create","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCreateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUncheckedCreateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"connectOrCreate","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCreateOrConnectWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"upsert","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketUpsertWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"disconnect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Boolean","location":"scalar","isList":false}]},{"name":"delete","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Boolean","location":"scalar","isList":false}]},{"name":"connect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"update","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketUpdateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUncheckedUpdateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentUpdateOneRequiredWithoutUserAssignmentsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"create","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentCreateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentUncheckedCreateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"connectOrCreate","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentCreateOrConnectWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"upsert","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentUpsertWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"connect","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"update","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentUpdateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentUncheckedUpdateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"NullableIntFieldUpdateOperationsInput","constraints":{"maxNumFields":1,"minNumFields":1},"fields":[{"name":"set","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"increment","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"decrement","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"multiply","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"divide","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]}]},{"name":"NestedIntFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":true}]},{"name":"notIn","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":true}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"NestedIntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"NestedStringFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":true}]},{"name":"notIn","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":true}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"contains","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"startsWith","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"endsWith","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"NestedStringFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"NestedDateTimeFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":true}]},{"name":"notIn","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":true}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"NestedDateTimeFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"NestedIntWithAggregatesFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":true}]},{"name":"notIn","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":true}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"NestedIntWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_count","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_avg","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedFloatFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_sum","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_min","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_max","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"NestedFloatFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Float","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Float","location":"scalar","isList":true}]},{"name":"notIn","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Float","location":"scalar","isList":true}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Float","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Float","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Float","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Float","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Float","location":"scalar","isList":false},{"type":"NestedFloatFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"NestedStringWithAggregatesFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":true}]},{"name":"notIn","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":true}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"contains","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"startsWith","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"endsWith","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"NestedStringWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_count","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_min","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedStringFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_max","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedStringFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"NestedDateTimeWithAggregatesFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":true}]},{"name":"notIn","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":true}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"NestedDateTimeWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_count","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_min","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedDateTimeFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_max","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedDateTimeFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"NestedStringNullableFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":true},{"type":"Null","location":"scalar","isList":false}]},{"name":"notIn","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":true},{"type":"Null","location":"scalar","isList":false}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"contains","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"startsWith","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"endsWith","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"NestedStringNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]}]},{"name":"NestedStringNullableWithAggregatesFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":true},{"type":"Null","location":"scalar","isList":false}]},{"name":"notIn","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":true},{"type":"Null","location":"scalar","isList":false}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"contains","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"startsWith","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"endsWith","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"NestedStringNullableWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"_count","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_min","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedStringNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_max","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedStringNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"NestedIntNullableFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":true},{"type":"Null","location":"scalar","isList":false}]},{"name":"notIn","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":true},{"type":"Null","location":"scalar","isList":false}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"NestedIntNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]}]},{"name":"NestedJsonNullableFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":false,"inputTypes":[{"type":"JsonNullValueFilter","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":false,"inputTypes":[{"type":"JsonNullValueFilter","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]}]},{"name":"NestedIntNullableWithAggregatesFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":true},{"type":"Null","location":"scalar","isList":false}]},{"name":"notIn","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":true},{"type":"Null","location":"scalar","isList":false}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"NestedIntNullableWithAggregatesFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"_count","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_avg","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedFloatNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_sum","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_min","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"_max","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NestedIntNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"NestedFloatNullableFilter","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"equals","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Float","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"in","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Float","location":"scalar","isList":true},{"type":"Null","location":"scalar","isList":false}]},{"name":"notIn","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Float","location":"scalar","isList":true},{"type":"Null","location":"scalar","isList":false}]},{"name":"lt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Float","location":"scalar","isList":false}]},{"name":"lte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Float","location":"scalar","isList":false}]},{"name":"gt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Float","location":"scalar","isList":false}]},{"name":"gte","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Float","location":"scalar","isList":false}]},{"name":"not","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Float","location":"scalar","isList":false},{"type":"NestedFloatNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]}]},{"name":"ExperimentCreateWithoutBucketsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"name","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"status","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"sampling","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"description","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"rules","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NullableJsonNullValueInput","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]},{"name":"userAssignments","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateNestedManyWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentUncheckedCreateWithoutBucketsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"name","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"status","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"sampling","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"description","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"rules","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NullableJsonNullValueInput","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]},{"name":"userAssignments","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUncheckedCreateNestedManyWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentCreateOrConnectWithoutBucketsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"create","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentCreateWithoutBucketsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentUncheckedCreateWithoutBucketsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentCreateWithoutBucketInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"userId","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"experiment","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentCreateNestedOneWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentUncheckedCreateWithoutBucketInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"userId","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"experimentId","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]}]},{"name":"UserAssignmentCreateOrConnectWithoutBucketInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"create","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedCreateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentCreateManyBucketInputEnvelope","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateManyBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"skipDuplicates","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Boolean","location":"scalar","isList":false}]}]},{"name":"ExperimentUpsertWithoutBucketsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"update","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentUpdateWithoutBucketsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentUncheckedUpdateWithoutBucketsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"create","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentCreateWithoutBucketsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentUncheckedCreateWithoutBucketsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentUpdateWithoutBucketsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"name","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"status","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"sampling","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"description","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"NullableStringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"rules","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NullableJsonNullValueInput","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]},{"name":"userAssignments","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateManyWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentUncheckedUpdateWithoutBucketsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"name","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"status","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"sampling","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"description","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"NullableStringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"rules","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NullableJsonNullValueInput","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]},{"name":"userAssignments","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUncheckedUpdateManyWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentUpsertWithWhereUniqueWithoutBucketInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"update","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedUpdateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"create","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedCreateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentUpdateWithWhereUniqueWithoutBucketInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedUpdateWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentUpdateManyWithWhereWithoutBucketInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateManyMutationInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedUpdateManyWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentScalarWhereInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"AND","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"OR","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"NOT","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"userId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"StringFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"String","location":"scalar","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"bucketId","isRequired":false,"isNullable":true,"inputTypes":[{"type":"IntNullableFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTimeFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTimeFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"DateTime","location":"scalar","isList":false}]}]},{"name":"BucketCreateWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"key","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"ratio","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"userAssignments","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateNestedManyWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketUncheckedCreateWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"key","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"ratio","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"userAssignments","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUncheckedCreateNestedManyWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketCreateOrConnectWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"create","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUncheckedCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketCreateManyExperimentInputEnvelope","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketCreateManyExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"skipDuplicates","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Boolean","location":"scalar","isList":false}]}]},{"name":"UserAssignmentCreateWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"userId","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"bucket","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCreateNestedOneWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentUncheckedCreateWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"userId","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"bucketId","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]}]},{"name":"UserAssignmentCreateOrConnectWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"create","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentCreateManyExperimentInputEnvelope","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateManyExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"skipDuplicates","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Boolean","location":"scalar","isList":false}]}]},{"name":"BucketUpsertWithWhereUniqueWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"update","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketUpdateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUncheckedUpdateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"create","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUncheckedCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketUpdateWithWhereUniqueWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketUpdateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUncheckedUpdateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketUpdateManyWithWhereWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketUpdateManyMutationInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUncheckedUpdateManyWithoutBucketsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketScalarWhereInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"AND","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"OR","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"NOT","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"key","isRequired":false,"isNullable":false,"inputTypes":[{"type":"StringFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"String","location":"scalar","isList":false}]},{"name":"ratio","isRequired":false,"isNullable":false,"inputTypes":[{"type":"IntFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTimeFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTimeFilter","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"DateTime","location":"scalar","isList":false}]}]},{"name":"UserAssignmentUpsertWithWhereUniqueWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"update","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedUpdateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"create","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedCreateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentUpdateWithWhereUniqueWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedUpdateWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentUpdateManyWithWhereWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentScalarWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateManyMutationInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedUpdateManyWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketCreateWithoutUserAssignmentsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"key","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"ratio","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"experiment","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentCreateNestedOneWithoutBucketsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketUncheckedCreateWithoutUserAssignmentsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"experimentId","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"key","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"ratio","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]}]},{"name":"BucketCreateOrConnectWithoutUserAssignmentsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"create","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketCreateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUncheckedCreateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentCreateWithoutUserAssignmentsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"name","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"status","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"sampling","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"description","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"rules","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NullableJsonNullValueInput","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]},{"name":"buckets","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketCreateNestedManyWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentUncheckedCreateWithoutUserAssignmentsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"name","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"status","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"sampling","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"description","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"rules","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NullableJsonNullValueInput","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]},{"name":"buckets","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketUncheckedCreateNestedManyWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentCreateOrConnectWithoutUserAssignmentsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"create","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentCreateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentUncheckedCreateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketUpsertWithoutUserAssignmentsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"update","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketUpdateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUncheckedUpdateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"create","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketCreateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUncheckedCreateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketUpdateWithoutUserAssignmentsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"key","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"ratio","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"experiment","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentUpdateOneRequiredWithoutBucketsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketUncheckedUpdateWithoutUserAssignmentsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"key","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"ratio","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentUpsertWithoutUserAssignmentsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"update","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentUpdateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentUncheckedUpdateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"create","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentCreateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentUncheckedCreateWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentUpdateWithoutUserAssignmentsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"name","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"status","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"sampling","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"description","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"NullableStringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"rules","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NullableJsonNullValueInput","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]},{"name":"buckets","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketUpdateManyWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"ExperimentUncheckedUpdateWithoutUserAssignmentsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"name","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"status","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"sampling","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"description","isRequired":false,"isNullable":true,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"NullableStringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"rules","isRequired":false,"isNullable":false,"inputTypes":[{"type":"NullableJsonNullValueInput","namespace":"prisma","location":"enumTypes","isList":false},{"type":"Json","location":"scalar","isList":false}]},{"name":"buckets","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketUncheckedUpdateManyWithoutExperimentInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentCreateManyBucketInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"userId","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"experimentId","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]}]},{"name":"UserAssignmentUpdateWithoutBucketInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"userId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"experiment","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentUpdateOneRequiredWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentUncheckedUpdateWithoutBucketInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"userId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentUncheckedUpdateManyWithoutUserAssignmentsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"userId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"experimentId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketCreateManyExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"key","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"ratio","isRequired":true,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]}]},{"name":"UserAssignmentCreateManyExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"userId","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"bucketId","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false}]}]},{"name":"BucketUpdateWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"key","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"ratio","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"userAssignments","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateManyWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketUncheckedUpdateWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"key","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"ratio","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"userAssignments","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUncheckedUpdateManyWithoutBucketInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"BucketUncheckedUpdateManyWithoutBucketsInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"key","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"ratio","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentUpdateWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"userId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"bucket","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketUpdateOneWithoutUserAssignmentsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]},{"name":"UserAssignmentUncheckedUpdateWithoutExperimentInput","constraints":{"maxNumFields":null,"minNumFields":null},"fields":[{"name":"id","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"IntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"userId","isRequired":false,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false},{"type":"StringFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"bucketId","isRequired":false,"isNullable":true,"inputTypes":[{"type":"Int","location":"scalar","isList":false},{"type":"NullableIntFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"Null","location":"scalar","isList":false}]},{"name":"createdAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"updatedAt","isRequired":false,"isNullable":false,"inputTypes":[{"type":"DateTime","location":"scalar","isList":false},{"type":"DateTimeFieldUpdateOperationsInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}]}]},"outputObjectTypes":{"prisma":[{"name":"Query","fields":[{"name":"findFirstBucket","args":[{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"orderBy","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"BucketOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"cursor","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"take","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"skip","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"distinct","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketScalarFieldEnum","namespace":"prisma","location":"enumTypes","isList":true}]}],"isNullable":true,"outputType":{"type":"Bucket","namespace":"model","location":"outputObjectTypes","isList":false}},{"name":"findManyBucket","args":[{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"orderBy","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"BucketOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"cursor","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"take","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"skip","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"distinct","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketScalarFieldEnum","namespace":"prisma","location":"enumTypes","isList":true}]}],"isNullable":false,"outputType":{"type":"Bucket","namespace":"model","location":"outputObjectTypes","isList":true}},{"name":"aggregateBucket","args":[{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"orderBy","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"BucketOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"cursor","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"take","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"skip","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]}],"isNullable":false,"outputType":{"type":"AggregateBucket","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"groupByBucket","args":[{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"orderBy","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketOrderByWithAggregationInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"BucketOrderByWithAggregationInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"by","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketScalarFieldEnum","namespace":"prisma","location":"enumTypes","isList":true},{"type":"BucketScalarFieldEnum","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"having","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketScalarWhereWithAggregatesInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"take","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"skip","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]}],"isNullable":false,"outputType":{"type":"BucketGroupByOutputType","namespace":"prisma","location":"outputObjectTypes","isList":true}},{"name":"findUniqueBucket","args":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":true,"outputType":{"type":"Bucket","namespace":"model","location":"outputObjectTypes","isList":false}},{"name":"findFirstExperiment","args":[{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"orderBy","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"ExperimentOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"cursor","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"take","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"skip","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"distinct","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentScalarFieldEnum","namespace":"prisma","location":"enumTypes","isList":true}]}],"isNullable":true,"outputType":{"type":"Experiment","namespace":"model","location":"outputObjectTypes","isList":false}},{"name":"findManyExperiment","args":[{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"orderBy","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"ExperimentOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"cursor","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"take","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"skip","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"distinct","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentScalarFieldEnum","namespace":"prisma","location":"enumTypes","isList":true}]}],"isNullable":false,"outputType":{"type":"Experiment","namespace":"model","location":"outputObjectTypes","isList":true}},{"name":"aggregateExperiment","args":[{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"orderBy","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"ExperimentOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"cursor","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"take","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"skip","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]}],"isNullable":false,"outputType":{"type":"AggregateExperiment","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"groupByExperiment","args":[{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"orderBy","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentOrderByWithAggregationInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"ExperimentOrderByWithAggregationInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"by","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentScalarFieldEnum","namespace":"prisma","location":"enumTypes","isList":true},{"type":"ExperimentScalarFieldEnum","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"having","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentScalarWhereWithAggregatesInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"take","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"skip","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]}],"isNullable":false,"outputType":{"type":"ExperimentGroupByOutputType","namespace":"prisma","location":"outputObjectTypes","isList":true}},{"name":"findUniqueExperiment","args":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":true,"outputType":{"type":"Experiment","namespace":"model","location":"outputObjectTypes","isList":false}},{"name":"findFirstUserAssignment","args":[{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"orderBy","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"UserAssignmentOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"cursor","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"take","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"skip","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"distinct","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentScalarFieldEnum","namespace":"prisma","location":"enumTypes","isList":true}]}],"isNullable":true,"outputType":{"type":"UserAssignment","namespace":"model","location":"outputObjectTypes","isList":false}},{"name":"findManyUserAssignment","args":[{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"orderBy","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"UserAssignmentOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"cursor","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"take","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"skip","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"distinct","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentScalarFieldEnum","namespace":"prisma","location":"enumTypes","isList":true}]}],"isNullable":false,"outputType":{"type":"UserAssignment","namespace":"model","location":"outputObjectTypes","isList":true}},{"name":"aggregateUserAssignment","args":[{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"orderBy","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"UserAssignmentOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"cursor","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"take","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"skip","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]}],"isNullable":false,"outputType":{"type":"AggregateUserAssignment","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"groupByUserAssignment","args":[{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"orderBy","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentOrderByWithAggregationInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"UserAssignmentOrderByWithAggregationInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"by","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentScalarFieldEnum","namespace":"prisma","location":"enumTypes","isList":true},{"type":"UserAssignmentScalarFieldEnum","namespace":"prisma","location":"enumTypes","isList":false}]},{"name":"having","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentScalarWhereWithAggregatesInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"take","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"skip","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]}],"isNullable":false,"outputType":{"type":"UserAssignmentGroupByOutputType","namespace":"prisma","location":"outputObjectTypes","isList":true}},{"name":"findUniqueUserAssignment","args":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":true,"outputType":{"type":"UserAssignment","namespace":"model","location":"outputObjectTypes","isList":false}}]},{"name":"Mutation","fields":[{"name":"createOneBucket","args":[{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketCreateInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUncheckedCreateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":false,"outputType":{"type":"Bucket","namespace":"model","location":"outputObjectTypes","isList":false}},{"name":"upsertOneBucket","args":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"create","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketCreateInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUncheckedCreateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"update","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketUpdateInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUncheckedUpdateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":false,"outputType":{"type":"Bucket","namespace":"model","location":"outputObjectTypes","isList":false}},{"name":"createManyBucket","args":[{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketCreateManyInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"skipDuplicates","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Boolean","location":"scalar","isList":false}]}],"isNullable":false,"outputType":{"type":"AffectedRowsOutput","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"deleteOneBucket","args":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":true,"outputType":{"type":"Bucket","namespace":"model","location":"outputObjectTypes","isList":false}},{"name":"updateOneBucket","args":[{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketUpdateInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUncheckedUpdateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":true,"outputType":{"type":"Bucket","namespace":"model","location":"outputObjectTypes","isList":false}},{"name":"updateManyBucket","args":[{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"BucketUpdateManyMutationInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"BucketUncheckedUpdateManyInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":false,"outputType":{"type":"AffectedRowsOutput","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"deleteManyBucket","args":[{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":false,"outputType":{"type":"AffectedRowsOutput","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"createOneExperiment","args":[{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentCreateInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentUncheckedCreateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":false,"outputType":{"type":"Experiment","namespace":"model","location":"outputObjectTypes","isList":false}},{"name":"upsertOneExperiment","args":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"create","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentCreateInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentUncheckedCreateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"update","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentUpdateInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentUncheckedUpdateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":false,"outputType":{"type":"Experiment","namespace":"model","location":"outputObjectTypes","isList":false}},{"name":"createManyExperiment","args":[{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentCreateManyInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"skipDuplicates","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Boolean","location":"scalar","isList":false}]}],"isNullable":false,"outputType":{"type":"AffectedRowsOutput","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"deleteOneExperiment","args":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":true,"outputType":{"type":"Experiment","namespace":"model","location":"outputObjectTypes","isList":false}},{"name":"updateOneExperiment","args":[{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentUpdateInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentUncheckedUpdateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":true,"outputType":{"type":"Experiment","namespace":"model","location":"outputObjectTypes","isList":false}},{"name":"updateManyExperiment","args":[{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"ExperimentUpdateManyMutationInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"ExperimentUncheckedUpdateManyInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":false,"outputType":{"type":"AffectedRowsOutput","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"deleteManyExperiment","args":[{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"ExperimentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":false,"outputType":{"type":"AffectedRowsOutput","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"createOneUserAssignment","args":[{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedCreateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":false,"outputType":{"type":"UserAssignment","namespace":"model","location":"outputObjectTypes","isList":false}},{"name":"upsertOneUserAssignment","args":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"create","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedCreateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"update","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedUpdateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":false,"outputType":{"type":"UserAssignment","namespace":"model","location":"outputObjectTypes","isList":false}},{"name":"createManyUserAssignment","args":[{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentCreateManyInput","namespace":"prisma","location":"inputObjectTypes","isList":true}]},{"name":"skipDuplicates","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Boolean","location":"scalar","isList":false}]}],"isNullable":false,"outputType":{"type":"AffectedRowsOutput","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"deleteOneUserAssignment","args":[{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":true,"outputType":{"type":"UserAssignment","namespace":"model","location":"outputObjectTypes","isList":false}},{"name":"updateOneUserAssignment","args":[{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedUpdateInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"where","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":true,"outputType":{"type":"UserAssignment","namespace":"model","location":"outputObjectTypes","isList":false}},{"name":"updateManyUserAssignment","args":[{"name":"data","isRequired":true,"isNullable":false,"inputTypes":[{"type":"UserAssignmentUpdateManyMutationInput","namespace":"prisma","location":"inputObjectTypes","isList":false},{"type":"UserAssignmentUncheckedUpdateManyInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":false,"outputType":{"type":"AffectedRowsOutput","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"deleteManyUserAssignment","args":[{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]}],"isNullable":false,"outputType":{"type":"AffectedRowsOutput","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"executeRaw","args":[{"name":"query","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"parameters","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Json","location":"scalar","isList":false}]}],"isNullable":false,"outputType":{"type":"Json","location":"scalar","isList":false}},{"name":"queryRaw","args":[{"name":"query","isRequired":true,"isNullable":false,"inputTypes":[{"type":"String","location":"scalar","isList":false}]},{"name":"parameters","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Json","location":"scalar","isList":false}]}],"isNullable":false,"outputType":{"type":"Json","location":"scalar","isList":false}}]},{"name":"AggregateBucket","fields":[{"name":"_count","args":[],"isNullable":true,"outputType":{"type":"BucketCountAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_avg","args":[],"isNullable":true,"outputType":{"type":"BucketAvgAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_sum","args":[],"isNullable":true,"outputType":{"type":"BucketSumAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_min","args":[],"isNullable":true,"outputType":{"type":"BucketMinAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_max","args":[],"isNullable":true,"outputType":{"type":"BucketMaxAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}}]},{"name":"BucketGroupByOutputType","fields":[{"name":"id","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"experimentId","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"key","args":[],"isNullable":false,"outputType":{"type":"String","location":"scalar","isList":false}},{"name":"ratio","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"createdAt","args":[],"isNullable":false,"outputType":{"type":"DateTime","location":"scalar","isList":false}},{"name":"updatedAt","args":[],"isNullable":false,"outputType":{"type":"DateTime","location":"scalar","isList":false}},{"name":"_count","args":[],"isNullable":true,"outputType":{"type":"BucketCountAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_avg","args":[],"isNullable":true,"outputType":{"type":"BucketAvgAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_sum","args":[],"isNullable":true,"outputType":{"type":"BucketSumAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_min","args":[],"isNullable":true,"outputType":{"type":"BucketMinAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_max","args":[],"isNullable":true,"outputType":{"type":"BucketMaxAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}}]},{"name":"AggregateExperiment","fields":[{"name":"_count","args":[],"isNullable":true,"outputType":{"type":"ExperimentCountAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_avg","args":[],"isNullable":true,"outputType":{"type":"ExperimentAvgAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_sum","args":[],"isNullable":true,"outputType":{"type":"ExperimentSumAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_min","args":[],"isNullable":true,"outputType":{"type":"ExperimentMinAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_max","args":[],"isNullable":true,"outputType":{"type":"ExperimentMaxAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}}]},{"name":"ExperimentGroupByOutputType","fields":[{"name":"id","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"name","args":[],"isNullable":false,"outputType":{"type":"String","location":"scalar","isList":false}},{"name":"status","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"sampling","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"createdAt","args":[],"isNullable":false,"outputType":{"type":"DateTime","location":"scalar","isList":false}},{"name":"updatedAt","args":[],"isNullable":false,"outputType":{"type":"DateTime","location":"scalar","isList":false}},{"name":"description","args":[],"isNullable":true,"outputType":{"type":"String","location":"scalar","isList":false}},{"name":"rules","args":[],"isNullable":true,"outputType":{"type":"Json","location":"scalar","isList":false}},{"name":"_count","args":[],"isNullable":true,"outputType":{"type":"ExperimentCountAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_avg","args":[],"isNullable":true,"outputType":{"type":"ExperimentAvgAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_sum","args":[],"isNullable":true,"outputType":{"type":"ExperimentSumAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_min","args":[],"isNullable":true,"outputType":{"type":"ExperimentMinAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_max","args":[],"isNullable":true,"outputType":{"type":"ExperimentMaxAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}}]},{"name":"AggregateUserAssignment","fields":[{"name":"_count","args":[],"isNullable":true,"outputType":{"type":"UserAssignmentCountAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_avg","args":[],"isNullable":true,"outputType":{"type":"UserAssignmentAvgAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_sum","args":[],"isNullable":true,"outputType":{"type":"UserAssignmentSumAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_min","args":[],"isNullable":true,"outputType":{"type":"UserAssignmentMinAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_max","args":[],"isNullable":true,"outputType":{"type":"UserAssignmentMaxAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}}]},{"name":"UserAssignmentGroupByOutputType","fields":[{"name":"id","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"userId","args":[],"isNullable":false,"outputType":{"type":"String","location":"scalar","isList":false}},{"name":"experimentId","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"bucketId","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"createdAt","args":[],"isNullable":false,"outputType":{"type":"DateTime","location":"scalar","isList":false}},{"name":"updatedAt","args":[],"isNullable":false,"outputType":{"type":"DateTime","location":"scalar","isList":false}},{"name":"_count","args":[],"isNullable":true,"outputType":{"type":"UserAssignmentCountAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_avg","args":[],"isNullable":true,"outputType":{"type":"UserAssignmentAvgAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_sum","args":[],"isNullable":true,"outputType":{"type":"UserAssignmentSumAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_min","args":[],"isNullable":true,"outputType":{"type":"UserAssignmentMinAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}},{"name":"_max","args":[],"isNullable":true,"outputType":{"type":"UserAssignmentMaxAggregateOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}}]},{"name":"AffectedRowsOutput","fields":[{"name":"count","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}}]},{"name":"BucketCountOutputType","fields":[{"name":"userAssignments","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}}]},{"name":"BucketCountAggregateOutputType","fields":[{"name":"id","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"experimentId","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"key","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"ratio","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"createdAt","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"updatedAt","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"_all","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}}]},{"name":"BucketAvgAggregateOutputType","fields":[{"name":"id","args":[],"isNullable":true,"outputType":{"type":"Float","location":"scalar","isList":false}},{"name":"experimentId","args":[],"isNullable":true,"outputType":{"type":"Float","location":"scalar","isList":false}},{"name":"ratio","args":[],"isNullable":true,"outputType":{"type":"Float","location":"scalar","isList":false}}]},{"name":"BucketSumAggregateOutputType","fields":[{"name":"id","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"experimentId","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"ratio","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}}]},{"name":"BucketMinAggregateOutputType","fields":[{"name":"id","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"experimentId","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"key","args":[],"isNullable":true,"outputType":{"type":"String","location":"scalar","isList":false}},{"name":"ratio","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"createdAt","args":[],"isNullable":true,"outputType":{"type":"DateTime","location":"scalar","isList":false}},{"name":"updatedAt","args":[],"isNullable":true,"outputType":{"type":"DateTime","location":"scalar","isList":false}}]},{"name":"BucketMaxAggregateOutputType","fields":[{"name":"id","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"experimentId","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"key","args":[],"isNullable":true,"outputType":{"type":"String","location":"scalar","isList":false}},{"name":"ratio","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"createdAt","args":[],"isNullable":true,"outputType":{"type":"DateTime","location":"scalar","isList":false}},{"name":"updatedAt","args":[],"isNullable":true,"outputType":{"type":"DateTime","location":"scalar","isList":false}}]},{"name":"ExperimentCountOutputType","fields":[{"name":"buckets","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"userAssignments","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}}]},{"name":"ExperimentCountAggregateOutputType","fields":[{"name":"id","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"name","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"status","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"sampling","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"createdAt","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"updatedAt","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"description","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"rules","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"_all","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}}]},{"name":"ExperimentAvgAggregateOutputType","fields":[{"name":"id","args":[],"isNullable":true,"outputType":{"type":"Float","location":"scalar","isList":false}},{"name":"status","args":[],"isNullable":true,"outputType":{"type":"Float","location":"scalar","isList":false}},{"name":"sampling","args":[],"isNullable":true,"outputType":{"type":"Float","location":"scalar","isList":false}}]},{"name":"ExperimentSumAggregateOutputType","fields":[{"name":"id","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"status","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"sampling","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}}]},{"name":"ExperimentMinAggregateOutputType","fields":[{"name":"id","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"name","args":[],"isNullable":true,"outputType":{"type":"String","location":"scalar","isList":false}},{"name":"status","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"sampling","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"createdAt","args":[],"isNullable":true,"outputType":{"type":"DateTime","location":"scalar","isList":false}},{"name":"updatedAt","args":[],"isNullable":true,"outputType":{"type":"DateTime","location":"scalar","isList":false}},{"name":"description","args":[],"isNullable":true,"outputType":{"type":"String","location":"scalar","isList":false}}]},{"name":"ExperimentMaxAggregateOutputType","fields":[{"name":"id","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"name","args":[],"isNullable":true,"outputType":{"type":"String","location":"scalar","isList":false}},{"name":"status","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"sampling","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"createdAt","args":[],"isNullable":true,"outputType":{"type":"DateTime","location":"scalar","isList":false}},{"name":"updatedAt","args":[],"isNullable":true,"outputType":{"type":"DateTime","location":"scalar","isList":false}},{"name":"description","args":[],"isNullable":true,"outputType":{"type":"String","location":"scalar","isList":false}}]},{"name":"UserAssignmentCountAggregateOutputType","fields":[{"name":"id","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"userId","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"experimentId","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"bucketId","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"createdAt","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"updatedAt","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"_all","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}}]},{"name":"UserAssignmentAvgAggregateOutputType","fields":[{"name":"id","args":[],"isNullable":true,"outputType":{"type":"Float","location":"scalar","isList":false}},{"name":"experimentId","args":[],"isNullable":true,"outputType":{"type":"Float","location":"scalar","isList":false}},{"name":"bucketId","args":[],"isNullable":true,"outputType":{"type":"Float","location":"scalar","isList":false}}]},{"name":"UserAssignmentSumAggregateOutputType","fields":[{"name":"id","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"experimentId","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"bucketId","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}}]},{"name":"UserAssignmentMinAggregateOutputType","fields":[{"name":"id","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"userId","args":[],"isNullable":true,"outputType":{"type":"String","location":"scalar","isList":false}},{"name":"experimentId","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"bucketId","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"createdAt","args":[],"isNullable":true,"outputType":{"type":"DateTime","location":"scalar","isList":false}},{"name":"updatedAt","args":[],"isNullable":true,"outputType":{"type":"DateTime","location":"scalar","isList":false}}]},{"name":"UserAssignmentMaxAggregateOutputType","fields":[{"name":"id","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"userId","args":[],"isNullable":true,"outputType":{"type":"String","location":"scalar","isList":false}},{"name":"experimentId","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"bucketId","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"createdAt","args":[],"isNullable":true,"outputType":{"type":"DateTime","location":"scalar","isList":false}},{"name":"updatedAt","args":[],"isNullable":true,"outputType":{"type":"DateTime","location":"scalar","isList":false}}]}],"model":[{"name":"Bucket","fields":[{"name":"id","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"experimentId","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"key","args":[],"isNullable":false,"outputType":{"type":"String","location":"scalar","isList":false}},{"name":"ratio","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"createdAt","args":[],"isNullable":false,"outputType":{"type":"DateTime","location":"scalar","isList":false}},{"name":"updatedAt","args":[],"isNullable":false,"outputType":{"type":"DateTime","location":"scalar","isList":false}},{"name":"experiment","args":[],"isNullable":false,"outputType":{"type":"Experiment","namespace":"model","location":"outputObjectTypes","isList":false}},{"name":"userAssignments","args":[{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"orderBy","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"UserAssignmentOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"cursor","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"take","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"skip","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"distinct","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentScalarFieldEnum","namespace":"prisma","location":"enumTypes","isList":true}]}],"isNullable":true,"outputType":{"type":"UserAssignment","namespace":"model","location":"outputObjectTypes","isList":true}},{"name":"_count","args":[],"isNullable":false,"outputType":{"type":"BucketCountOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}}]},{"name":"Experiment","fields":[{"name":"id","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"name","args":[],"isNullable":false,"outputType":{"type":"String","location":"scalar","isList":false}},{"name":"status","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"sampling","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"createdAt","args":[],"isNullable":false,"outputType":{"type":"DateTime","location":"scalar","isList":false}},{"name":"updatedAt","args":[],"isNullable":false,"outputType":{"type":"DateTime","location":"scalar","isList":false}},{"name":"description","args":[],"isNullable":true,"outputType":{"type":"String","location":"scalar","isList":false}},{"name":"rules","args":[],"isNullable":true,"outputType":{"type":"Json","location":"scalar","isList":false}},{"name":"buckets","args":[{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"orderBy","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"BucketOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"cursor","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"take","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"skip","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"distinct","isRequired":false,"isNullable":false,"inputTypes":[{"type":"BucketScalarFieldEnum","namespace":"prisma","location":"enumTypes","isList":true}]}],"isNullable":true,"outputType":{"type":"Bucket","namespace":"model","location":"outputObjectTypes","isList":true}},{"name":"userAssignments","args":[{"name":"where","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"orderBy","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":true},{"type":"UserAssignmentOrderByWithRelationInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"cursor","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentWhereUniqueInput","namespace":"prisma","location":"inputObjectTypes","isList":false}]},{"name":"take","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"skip","isRequired":false,"isNullable":false,"inputTypes":[{"type":"Int","location":"scalar","isList":false}]},{"name":"distinct","isRequired":false,"isNullable":false,"inputTypes":[{"type":"UserAssignmentScalarFieldEnum","namespace":"prisma","location":"enumTypes","isList":true}]}],"isNullable":true,"outputType":{"type":"UserAssignment","namespace":"model","location":"outputObjectTypes","isList":true}},{"name":"_count","args":[],"isNullable":false,"outputType":{"type":"ExperimentCountOutputType","namespace":"prisma","location":"outputObjectTypes","isList":false}}]},{"name":"UserAssignment","fields":[{"name":"id","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"userId","args":[],"isNullable":false,"outputType":{"type":"String","location":"scalar","isList":false}},{"name":"experimentId","args":[],"isNullable":false,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"bucketId","args":[],"isNullable":true,"outputType":{"type":"Int","location":"scalar","isList":false}},{"name":"createdAt","args":[],"isNullable":false,"outputType":{"type":"DateTime","location":"scalar","isList":false}},{"name":"updatedAt","args":[],"isNullable":false,"outputType":{"type":"DateTime","location":"scalar","isList":false}},{"name":"bucket","args":[],"isNullable":true,"outputType":{"type":"Bucket","namespace":"model","location":"outputObjectTypes","isList":false}},{"name":"experiment","args":[],"isNullable":false,"outputType":{"type":"Experiment","namespace":"model","location":"outputObjectTypes","isList":false}}]}]},"enumTypes":{"prisma":[{"name":"BucketScalarFieldEnum","values":["id","experimentId","key","ratio","createdAt","updatedAt"]},{"name":"ExperimentScalarFieldEnum","values":["id","name","status","sampling","createdAt","updatedAt","description","rules"]},{"name":"UserAssignmentScalarFieldEnum","values":["id","userId","experimentId","bucketId","createdAt","updatedAt"]},{"name":"SortOrder","values":["asc","desc"]},{"name":"NullableJsonNullValueInput","values":["DbNull","JsonNull"]},{"name":"JsonNullValueFilter","values":["DbNull","JsonNull","AnyNull"]}]}},"mappings":{"modelOperations":[{"model":"Bucket","plural":"buckets","findUnique":"findUniqueBucket","findFirst":"findFirstBucket","findMany":"findManyBucket","create":"createOneBucket","createMany":"createManyBucket","delete":"deleteOneBucket","update":"updateOneBucket","deleteMany":"deleteManyBucket","updateMany":"updateManyBucket","upsert":"upsertOneBucket","aggregate":"aggregateBucket","groupBy":"groupByBucket"},{"model":"Experiment","plural":"experiments","findUnique":"findUniqueExperiment","findFirst":"findFirstExperiment","findMany":"findManyExperiment","create":"createOneExperiment","createMany":"createManyExperiment","delete":"deleteOneExperiment","update":"updateOneExperiment","deleteMany":"deleteManyExperiment","updateMany":"updateManyExperiment","upsert":"upsertOneExperiment","aggregate":"aggregateExperiment","groupBy":"groupByExperiment"},{"model":"UserAssignment","plural":"userAssignments","findUnique":"findUniqueUserAssignment","findFirst":"findFirstUserAssignment","findMany":"findManyUserAssignment","create":"createOneUserAssignment","createMany":"createManyUserAssignment","delete":"deleteOneUserAssignment","update":"updateOneUserAssignment","deleteMany":"deleteManyUserAssignment","updateMany":"updateManyUserAssignment","upsert":"upsertOneUserAssignment","aggregate":"aggregateUserAssignment","groupBy":"groupByUserAssignment"}],"otherOperations":{"read":[],"write":["executeRaw","queryRaw"]}}}'
134
- const dmmf = JSON.parse(dmmfString)
135
- exports.Prisma.dmmf = JSON.parse(dmmfString)
136
-
137
- /**
138
- * Create the Client
139
- */
140
- const config = {
141
- generator: {
142
- name: 'client',
143
- provider: {
144
- fromEnvVar: null,
145
- value: 'prisma-client-js',
146
- },
147
- output: {
148
- value: '/home/kristofer/nc/abba/src/prisma-output',
149
- fromEnvVar: null,
150
- },
151
- config: {
152
- engineType: 'library',
153
- },
154
- binaryTargets: [
155
- {
156
- fromEnvVar: null,
157
- value: 'debian-openssl-3.0.x',
158
- },
159
- {
160
- fromEnvVar: null,
161
- value: 'darwin',
162
- },
163
- {
164
- fromEnvVar: null,
165
- value: 'darwin-arm64',
166
- },
167
- {
168
- fromEnvVar: null,
169
- value: 'debian-openssl-1.1.x',
170
- },
171
- {
172
- fromEnvVar: null,
173
- value: 'debian-openssl-3.0.x',
174
- },
175
- ],
176
- previewFeatures: [],
177
- isCustomOutput: true,
178
- },
179
- relativeEnvPaths: {
180
- rootEnvPath: null,
181
- },
182
- relativePath: '../../prisma',
183
- clientVersion: '3.13.0',
184
- engineVersion: 'efdf9b1183dddfd4258cd181a72125755215ab7b',
185
- datasourceNames: ['db'],
186
- activeProvider: 'mysql',
187
- }
188
- config.document = dmmf
189
- config.dirname = dirname
190
-
191
- const { warnEnvConflicts } = require('./runtime/index')
192
-
193
- warnEnvConflicts({
194
- rootEnvPath:
195
- config.relativeEnvPaths.rootEnvPath &&
196
- path.resolve(dirname, config.relativeEnvPaths.rootEnvPath),
197
- schemaEnvPath:
198
- config.relativeEnvPaths.schemaEnvPath &&
199
- path.resolve(dirname, config.relativeEnvPaths.schemaEnvPath),
200
- })
201
- const PrismaClient = getPrismaClient(config)
202
- exports.PrismaClient = PrismaClient
203
- Object.assign(exports, Prisma)
204
-
205
- path.join(__dirname, 'libquery_engine-debian-openssl-3.0.x.so.node')
206
- path.join(process.cwd(), 'src/prisma-output/libquery_engine-debian-openssl-3.0.x.so.node')
207
-
208
- path.join(__dirname, 'libquery_engine-darwin.dylib.node')
209
- path.join(process.cwd(), 'src/prisma-output/libquery_engine-darwin.dylib.node')
210
-
211
- path.join(__dirname, 'libquery_engine-darwin-arm64.dylib.node')
212
- path.join(process.cwd(), 'src/prisma-output/libquery_engine-darwin-arm64.dylib.node')
213
-
214
- path.join(__dirname, 'libquery_engine-debian-openssl-1.1.x.so.node')
215
- path.join(process.cwd(), 'src/prisma-output/libquery_engine-debian-openssl-1.1.x.so.node')
216
- path.join(__dirname, 'schema.prisma')
217
- path.join(process.cwd(), 'src/prisma-output/schema.prisma')