@pothos/plugin-prisma 3.1.2 → 3.4.0
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.
- package/CHANGELOG.md +22 -0
- package/{esm → dts}/field-builder.d.ts +0 -0
- package/{esm → dts}/field-builder.d.ts.map +0 -0
- package/{esm → dts}/generator.d.ts +0 -0
- package/{esm → dts}/generator.d.ts.map +0 -0
- package/{esm → dts}/global-types.d.ts +1 -1
- package/dts/global-types.d.ts.map +1 -0
- package/{esm → dts}/index.d.ts +0 -0
- package/{esm → dts}/index.d.ts.map +0 -0
- package/{esm → dts}/model-loader.d.ts +0 -0
- package/{esm → dts}/model-loader.d.ts.map +0 -0
- package/{esm → dts}/node-ref.d.ts +0 -0
- package/{esm → dts}/node-ref.d.ts.map +0 -0
- package/{esm → dts}/object-ref.d.ts +0 -0
- package/{esm → dts}/object-ref.d.ts.map +0 -0
- package/{esm → dts}/prisma-field-builder.d.ts +0 -0
- package/{esm → dts}/prisma-field-builder.d.ts.map +0 -0
- package/{esm → dts}/schema-builder.d.ts +0 -0
- package/{esm → dts}/schema-builder.d.ts.map +0 -0
- package/{esm → dts}/types.d.ts +0 -0
- package/{esm → dts}/types.d.ts.map +0 -0
- package/{esm → dts}/util/cursors.d.ts +0 -0
- package/{esm → dts}/util/cursors.d.ts.map +0 -0
- package/{esm → dts}/util/datamodel.d.ts +0 -0
- package/{esm → dts}/util/datamodel.d.ts.map +0 -0
- package/{esm → dts}/util/deep-equal.d.ts +0 -0
- package/{esm → dts}/util/deep-equal.d.ts.map +0 -0
- package/{esm → dts}/util/loader-map.d.ts +0 -0
- package/{esm → dts}/util/loader-map.d.ts.map +0 -0
- package/{esm → dts}/util/map-query.d.ts +0 -0
- package/{esm → dts}/util/map-query.d.ts.map +0 -0
- package/{esm → dts}/util/relation-map.d.ts +0 -0
- package/{esm → dts}/util/relation-map.d.ts.map +0 -0
- package/{esm → dts}/util/selections.d.ts +0 -0
- package/{esm → dts}/util/selections.d.ts.map +0 -0
- package/esm/field-builder.js +37 -29
- package/esm/field-builder.js.map +1 -1
- package/esm/generator.js +27 -31
- package/esm/generator.js.map +1 -1
- package/esm/global-types.js +1 -1
- package/esm/global-types.js.map +1 -1
- package/esm/index.js +12 -14
- package/esm/index.js.map +1 -1
- package/esm/model-loader.js +11 -9
- package/esm/model-loader.js.map +1 -1
- package/esm/node-ref.js +3 -5
- package/esm/node-ref.js.map +1 -1
- package/esm/object-ref.js.map +1 -1
- package/esm/prisma-field-builder.js +147 -113
- package/esm/prisma-field-builder.js.map +1 -1
- package/esm/schema-builder.js +24 -21
- package/esm/schema-builder.js.map +1 -1
- package/esm/types.js +0 -1
- package/esm/types.js.map +1 -1
- package/esm/util/cursors.js +22 -25
- package/esm/util/cursors.js.map +1 -1
- package/esm/util/datamodel.js +8 -7
- package/esm/util/datamodel.js.map +1 -1
- package/esm/util/deep-equal.js +1 -2
- package/esm/util/deep-equal.js.map +1 -1
- package/esm/util/loader-map.js +6 -3
- package/esm/util/loader-map.js.map +1 -1
- package/esm/util/map-query.js +53 -30
- package/esm/util/map-query.js.map +1 -1
- package/esm/util/relation-map.js +6 -4
- package/esm/util/relation-map.js.map +1 -1
- package/esm/util/selections.js +14 -19
- package/esm/util/selections.js.map +1 -1
- package/jest.config.js +6 -0
- package/lib/field-builder.js +92 -61
- package/lib/field-builder.js.map +1 -1
- package/lib/generator.js +94 -94
- package/lib/generator.js.map +1 -1
- package/lib/global-types.js +4 -1
- package/lib/global-types.js.map +1 -1
- package/lib/index.js +76 -53
- package/lib/index.js.map +1 -1
- package/lib/model-loader.js +26 -21
- package/lib/model-loader.js.map +1 -1
- package/lib/node-ref.js +12 -10
- package/lib/node-ref.js.map +1 -1
- package/lib/object-ref.js +9 -5
- package/lib/object-ref.js.map +1 -1
- package/lib/prisma-field-builder.js +169 -124
- package/lib/prisma-field-builder.js.map +1 -1
- package/lib/schema-builder.js +76 -71
- package/lib/schema-builder.js.map +1 -1
- package/lib/types.js +6 -3
- package/lib/types.js.map +1 -1
- package/lib/util/cursors.js +41 -41
- package/lib/util/cursors.js.map +1 -1
- package/lib/util/datamodel.js +39 -30
- package/lib/util/datamodel.js.map +1 -1
- package/lib/util/deep-equal.js +8 -7
- package/lib/util/deep-equal.js.map +1 -1
- package/lib/util/loader-map.js +21 -15
- package/lib/util/loader-map.js.map +1 -1
- package/lib/util/map-query.js +89 -67
- package/lib/util/map-query.js.map +1 -1
- package/lib/util/relation-map.js +19 -12
- package/lib/util/relation-map.js.map +1 -1
- package/lib/util/selections.js +44 -48
- package/lib/util/selections.js.map +1 -1
- package/package.json +19 -17
- package/src/field-builder.ts +1 -1
- package/src/global-types.ts +1 -3
- package/src/prisma-field-builder.ts +4 -4
- package/src/schema-builder.ts +1 -10
- package/tsconfig.json +7 -14
- package/tsconfig.type.json +10 -0
- package/tsconfig.type.tsbuildinfo +1 -0
- package/esm/global-types.d.ts.map +0 -1
- package/lib/field-builder.d.ts +0 -2
- package/lib/field-builder.d.ts.map +0 -1
- package/lib/generator.d.ts +0 -2
- package/lib/generator.d.ts.map +0 -1
- package/lib/global-types.d.ts +0 -70
- package/lib/global-types.d.ts.map +0 -1
- package/lib/index.d.ts +0 -14
- package/lib/index.d.ts.map +0 -1
- package/lib/model-loader.d.ts +0 -17
- package/lib/model-loader.d.ts.map +0 -1
- package/lib/node-ref.d.ts +0 -12
- package/lib/node-ref.d.ts.map +0 -1
- package/lib/object-ref.d.ts +0 -7
- package/lib/object-ref.d.ts.map +0 -1
- package/lib/prisma-field-builder.d.ts +0 -47
- package/lib/prisma-field-builder.d.ts.map +0 -1
- package/lib/schema-builder.d.ts +0 -2
- package/lib/schema-builder.d.ts.map +0 -1
- package/lib/types.d.ts +0 -174
- package/lib/types.d.ts.map +0 -1
- package/lib/util/cursors.d.ts +0 -57
- package/lib/util/cursors.d.ts.map +0 -1
- package/lib/util/datamodel.d.ts +0 -16
- package/lib/util/datamodel.d.ts.map +0 -1
- package/lib/util/deep-equal.d.ts +0 -2
- package/lib/util/deep-equal.d.ts.map +0 -1
- package/lib/util/loader-map.d.ts +0 -6
- package/lib/util/loader-map.d.ts.map +0 -1
- package/lib/util/map-query.d.ts +0 -6
- package/lib/util/map-query.d.ts.map +0 -1
- package/lib/util/relation-map.d.ts +0 -9
- package/lib/util/relation-map.d.ts.map +0 -1
- package/lib/util/selections.d.ts +0 -20
- package/lib/util/selections.d.ts.map +0 -1
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pothos/plugin-prisma",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0",
|
|
4
4
|
"description": "A Pothos plugin for more efficient integration with prisma",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
|
-
"types": "./
|
|
6
|
+
"types": "./dts/index.d.ts",
|
|
7
7
|
"module": "./esm/index.js",
|
|
8
8
|
"exports": {
|
|
9
9
|
"import": "./esm/index.js",
|
|
@@ -36,35 +36,37 @@
|
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@prisma/generator-helper": "^3.
|
|
39
|
+
"@prisma/generator-helper": "^3.12.0"
|
|
40
40
|
},
|
|
41
41
|
"prisma": {
|
|
42
|
-
"seed": "
|
|
42
|
+
"seed": "node -r @swc-node/register prisma/seed.ts"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
+
"@pothos/core": "*",
|
|
45
46
|
"@prisma/client": "*",
|
|
46
47
|
"graphql": ">=15.1.0",
|
|
47
48
|
"typescript": ">4.5.2"
|
|
48
49
|
},
|
|
49
50
|
"devDependencies": {
|
|
50
|
-
"@pothos/core": "3.
|
|
51
|
-
"@pothos/plugin-errors": "3.
|
|
52
|
-
"@pothos/plugin-relay": "3.
|
|
53
|
-
"@pothos/plugin-scope-auth": "3.
|
|
54
|
-
"@pothos/test-utils": "1.0
|
|
55
|
-
"@prisma/client": "^3.
|
|
51
|
+
"@pothos/core": "3.6.0",
|
|
52
|
+
"@pothos/plugin-errors": "3.3.0",
|
|
53
|
+
"@pothos/plugin-relay": "3.10.0",
|
|
54
|
+
"@pothos/plugin-scope-auth": "3.7.0",
|
|
55
|
+
"@pothos/test-utils": "1.1.0",
|
|
56
|
+
"@prisma/client": "^3.12.0",
|
|
56
57
|
"graphql": "16.3.0",
|
|
57
58
|
"graphql-tag": "^2.12.6",
|
|
58
|
-
"prisma": "^3.
|
|
59
|
+
"prisma": "^3.12.0"
|
|
59
60
|
},
|
|
60
61
|
"scripts": {
|
|
61
62
|
"generate": "prisma generate",
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"build": "
|
|
65
|
-
"build:cjs": "
|
|
66
|
-
"build:esm": "
|
|
67
|
-
"
|
|
63
|
+
"type": "tsc --project tsconfig.type.json",
|
|
64
|
+
"build": "pnpm build:clean && pnpm build:cjs && pnpm build:esm && pnpm build:dts",
|
|
65
|
+
"build:clean": "git clean -dfX esm lib",
|
|
66
|
+
"build:cjs": "swc src -d lib --config-file ../../.swcrc -C module.type=commonjs",
|
|
67
|
+
"build:esm": "swc src -d esm --config-file ../../.swcrc -C module.type=es6 && pnpm esm:extensions",
|
|
68
|
+
"build:dts": "tsc",
|
|
69
|
+
"esm:extensions": "TS_NODE_PROJECT=../../tsconfig.json node -r @swc-node/register ../../.config/esm-transformer.ts",
|
|
68
70
|
"test": "pnpm jest --runInBand"
|
|
69
71
|
},
|
|
70
72
|
"readme": "# Prisma Plugin for Pothos\n\nThis plugin provides tighter integration with prisma, making it easier to define prisma based object\ntypes, and helps solve n+1 queries for relations. It also has integrations for the relay plugin to\nmake defining nodes and connections easy and efficient.\n\nThis plugin is NOT required to use prisma with Pothos, but does make things a lot easier and more\nefficient. See the [Using Prisma without a plugin](#using-prisma-without-a-plugin) section below for\nmore details.\n\n## Features\n\n- 🎨 Quickly define GraphQL types based on your Prisma models\n- 🦺 Strong type-safety throughout the entire API\n- 🤝 Automatically resolve relationships defined in your database\n- 🎣 Automatic Query optimization to efficiently load the specific data needed to resolve a query\n (solves common N+1 issues)\n- 💅 Types and fields in GraphQL schema are not implicitly tied to the column names or types in your\n database.\n- 🔀 Relay integration for defining nodes and connections that can be efficiently loaded.\n- 📚 Supports multiple GraphQL models based on the same Database model\n- 🧮 Count fields can easily be added to objects and connections\n\n## Example\n\nHere is a quick example of what an API using this plugin might look like. There is a more thorough\nbreakdown of what the methods and options used in the example below.\n\n```typescript\n// Create an object type based on a prisma model\n// without providing any custom type information\nbuilder.prismaObject('User', {\n // findUnique is explained more below, and is\n // required to safely resolve queries in some edge cases\n findUnique: (user) => ({ id: user.id }),\n fields: (t) => ({\n // expose fields from the database\n id: t.exposeID('id'),\n email: t.exposeString('email'),\n bio: t.string({\n // automatically load the bio from the profile\n // when this field is queried\n select: {\n profile: {\n select: {\n bio: true,\n },\n },\n },\n // user will be typed correctly to include the\n // selected fields from above\n resolve: (user) => user.profile.bio,\n }),\n // Load posts as list field.\n posts: t.relation('posts', {\n args: {\n oldestFirst: t.arg.boolean(),\n },\n // Define custom query options that are applied when\n // loading the post relation\n query: (args, context) => ({\n orderBy: {\n createdAt: args.oldestFirst ? 'asc' : 'desc',\n },\n }),\n }),\n // creates relay connection that handles pagination\n // using prisma's built in cursor based pagination\n postsConnection: t.relatedConnection('posts', {\n cursor: 'id',\n }),\n }),\n});\n\n// Create a relay node based a prisma model\nbuilder.prismaNode('Post', {\n findUnique: (id) => ({ id }),\n id: { resolve: (post) => post.id },\n fields: (t) => ({\n title: t.exposeString('title'),\n author: t.relation('author'),\n }),\n});\n\nbuilder.queryType({\n fields: (t) => ({\n // Define a field that issues an optimized prisma query\n me: t.prismaField({\n type: 'User',\n resolve: async (query, root, args, ctx, info) =>\n prisma.user.findUnique({\n // the `query` argument will add in `include`s or `select`s to\n // resolve as much of the request in a single query as possible\n ...query,\n rejectOnNotFound: true,\n where: { id: ctx.userId },\n }),\n }),\n }),\n});\n```\n\nGiven this schema, you would be able to resolve a query like the following with a single prisma\nquery (which will still result in a few optimized SQL queries).\n\n```graphql\nquery {\n me {\n email\n posts {\n title\n author {\n id\n }\n }\n }\n}\n```\n\nA query like\n\n```graphql\nquery {\n me {\n email\n posts {\n title\n author {\n id\n }\n }\n oldPosts: posts(oldestFirst: true) {\n title\n author {\n id\n }\n }\n }\n}\n```\n\nWill result in 2 calls to prisma, one to resolve everything except `oldPosts`, and a second to\nresolve everything inside `oldPosts`. Prisma can only resolve each relation once in a single query,\nso we need a separate to handle the second `posts` relation. These additional queries will use the\n`findUnique` defined for the parent type to create a new efficient query to load any conflicting\nrelations.\n\n## Install\n\n```bash\nyarn add @pothos/plugin-prisma\n```\n\n## Setup\n\nThis plugin requires a little more setup than other plugins because it integrates with the prisma to\ngenerate some types that help the plugin better understand your prisma schema. Previous versions of\nthis plugin used to infer all required types from the prisma client itself, but this resulted in a\npoor dev experience because the complex types slowed down editors, and some more advanced use cases\ncould not be typed correctly.\n\n### Add a the `pothos` generator to your prisma schema\n\n```\ngenerator pothos {\n provider = \"prisma-pothos-types\"\n}\n```\n\nNow the types Pothos uses will be generated whenever you re-generate your prisma client. Run the\nfollowing command to re-generate the client and create the new types:\n\n```sh\nnpx prisma generate\n```\n\nadditional options:\n\n- `clientOutput`: Where the generated code will import the PrismaClient from. The default is the\n full path of wherever the client is generated. If you are checking in the generated file, using\n `@prisma/client` is a good option.\n- `output`: Where to write the generated types\n\nExample with more options:\n\n```\ngenerator pothos {\n provider = \"prisma-pothos-types\"\n clientOutput = \"@prisma/client\"\n output = \"./pothos-types.ts\"\n}\n```\n\n### Set up the builder\n\n```typescript\nimport SchemaBuilder from '@pothos/core';\nimport { PrismaClient } from '@prisma/client';\nimport PrismaPlugin from '@pothos/plugin-prisma';\n// This is the default location for the generator, but this can be\n// customized as described above.\n// Using a type only import will help avoid issues with undeclared\n// exports in esm mode\nimport type PrismaTypes from '@pothos/plugin-prisma/generated';\n\nconst prisma = new PrismaClient({});\n\nconst builder = new SchemaBuilder<{\n PrismaTypes: PrismaTypes;\n}>({\n plugins: [PrismaPlugin],\n prisma: {\n client: prisma,\n },\n});\n```\n\nIt is strongly recommended NOT to put your prisma client into `Context`. This will result in slower\ntype-checking and a laggy developer experience in VSCode. See\n[this issue](https://github.com/microsoft/TypeScript/issues/45405) for more details.\n\n## Creating types with `builder.prismaObject`\n\n`builder.prismaObject` takes 2 arguments:\n\n1. `name`: The name of the prisma model this new type represents\n2. `options`: options for the type being created, this is very similar to the options for any other\n object type\n\n```typescript\nbuilder.prismaObject('User', {\n // Optional name for the object, defaults to the name of the prisma model\n name: 'PostAuthor',\n findUnique: (user) => ({ id: user.id }),\n fields: (t) => ({\n id: t.exposeID('id'),\n email: t.exposeString('email'),\n }),\n});\n\nbuilder.prismaObject('Post', {\n findUnique: (post) => ({ id: post.id }),\n fields: (t) => ({\n id: t.exposeID('id'),\n title: t.exposeString('title'),\n }),\n});\n```\n\nSo far, this is just creating some simple object types. They work just like any other object type in\nPothos. The main advantage of this is that we get the type information without using object refs, or\nneeding imports from prisma client.\n\nThe `findUnique` option is described more below.\n\n## Adding prisma fields to non-prisma objects (including Query and Mutation)\n\nThere is a new `t.prismaField` method which can be used to define fields that resolve to your prisma\ntypes:\n\n```typescript\nbuilder.queryType({\n fields: (t) => ({\n me: t.prismaField({\n type: 'User',\n resolve: async (query, root, args, ctx, info) =>\n prisma.user.findUnique({\n ...query,\n rejectOnNotFound: true,\n where: { id: ctx.userId },\n }),\n }),\n }),\n});\n```\n\nThis method works just like th normal `t.field` method with a couple of differences:\n\n1. The `type` option must contain the name of the prisma model (eg. `User` or `[User]` for a list\n field).\n2. The `resolve` function has a new first argument `query` which should be spread into query prisma\n query. This will be used to load data for nested relationships.\n\nYou do not need to use this method, and the `builder.prismaObject` method returns an object ref than\ncan be used like any other object ref (with `t.field`), but using `t.prismaField` will allow you to\ntake advantage of more efficient queries.\n\nThe `query` object will contain an object with `include` or `select` options to pre-load data needed\nto resolve nested parts of the current query. The included/selected fields are based on which fields\nare being queried, and the options provided when defining those fields and types.\n\n## Adding relations\n\nYou can add fields for relations using the `t.relation` method:\n\n```typescript\nbuilder.queryType({\n fields: (t) => ({\n me: t.prismaField({\n type: 'User',\n resolve: async (query, root, args, ctx, info) =>\n prisma.user.findUnique({\n ...query,\n rejectOnNotFound: true,\n where: { id: ctx.userId },\n }),\n }),\n }),\n});\n\nbuilder.prismaObject('User', {\n findUnique: (user) => ({ id: user.id }),\n fields: (t) => ({\n id: t.exposeID('id'),\n email: t.exposeString('email'),\n posts: t.relation('posts'),\n }),\n});\n\nbuilder.prismaObject('Post', {\n findUnique: (post) => ({ id: post.id }),\n fields: (t) => ({\n id: t.exposeID('id'),\n title: t.exposeString('title'),\n author: t.relation('author'),\n }),\n});\n```\n\n`t.relation` defines a field that can be pre-loaded by a parent resolver. This will create something\nlike `{ include: { author: true }}` that will be passed as part of the `query` argument of a\n`prismaField` resolver. If the parent is another `relation` field, the includes will become nested,\nand the full relation chain will be passed to the `prismaField` that started the chain.\n\nFor example the query:\n\n```graphql\nquery {\n me {\n posts {\n author {\n id\n }\n }\n }\n}\n```\n\nthe `me` `prismaField` would receive something like the following as its query parameter:\n\n```ts\n{\n include: {\n posts: {\n include: {\n author: true;\n }\n }\n }\n}\n```\n\nThis will work perfectly for the majority of queries. There are a number of edge cases that make it\nimpossible to resolve everything in a single query. When this happens the `findUnique` option is\nused to ensure that everything is still loaded correctly, and split into as few efficient queries as\npossible.\n\n### Find Unique\n\nThe `findUnique` function will receive an instance of the prisma model the current type is defining,\nand should return an object that will be passed as a `where` in a `prisma.findUnique`. Generally,\nthis will just be something like: `user => { id: user.id }` where `id` is the primary key for the\ntable.\n\nWhen the prisma plugin encounters a query where the requirements for a field can not be satisfied,\nit will call findUnique for the current prisma model, and include or select all properties that are\nrequired for the fields that could not be resolved without an additional query.\n\nThe following are some edge cases that could cause an additional query to be necessary:\n\n- The parent object was not loaded through a field defined with `t.prismaField`, or `t.relation`\n- The root `prismaField` did not correctly spread the `query` arguments in is prisma call.\n- The query selects multiple fields that use the same relation with different queries\n- The query contains multiple aliases for the same relation field with different arguments in a way\n that results in different query options for the relation.\n- A relation field has a query that is incompatible with the default includes of the parent object\n\nAll of the above should be relatively uncommon in normal usage, but the plugin ensures that these\ntypes of edge cases are automatically handled when they do occur.\n\n### Without Find Unique\n\nThis is generally _NOT RECOMMENDED_, but you can set `findUnique` to null for some prisma objects.\nDoing this will prevent the plugin from resolving queries for conflicting relations. Because of\nthis, you will need to provide a `resolve` method when defining relations, and some other options\n(like field level selects, described below) will not be available. This `resolve` method is _ONLY\nCALLED AS A FALLBACK_ when the relation has not already been loaded. This means that you should not\napply any sorting or filtering to the relation queried in the resolve method. Instead used the\n`query` option described in the next section\n\n```typescript\nbuilder.prismaObject('User', {\n findUnique: null,\n fields: (t) => ({\n id: t.exposeID('id'),\n posts: t.relation('posts', {\n resolve: (query, user) =>\n db.post.findMany({\n ...query,\n where: { authorId: user.id },\n }),\n }),\n }),\n});\n```\n\n### Filters, Sorting, and arguments\n\nSo far we have been describing very simple queries without any arguments, filtering, or sorting. For\n`t.prismaField` definitions, you can add arguments to your field like normal, and pass them into\nyour prisma query as needed. For `t.relation` the flow is slightly different because we are not\nmaking a prisma query directly. We do this by adding a `query` option to our field options. Query\ncan either be a query object, or a method that returns a query object based on the field arguments.\n\n```typescript\nbuilder.prismaObject('User', {\n findUnique: (user) => ({ id: user.id }),\n fields: (t) => ({\n id: t.exposeID('id'),\n posts: t.relation('posts', {\n // We can define arguments like any other field\n args: {\n oldestFirst: t.arg.boolean(),\n },\n // Then we can generate our query conditions based on the arguments\n query: (args, context) => ({\n orderBy: {\n createdAt: args.oldestFirst ? 'asc' : 'desc',\n },\n }),\n }),\n }),\n});\n```\n\nThe returned query object will be added to the include section of the `query` argument that gets\npassed into the first argument of the parent `t.prismaField`, and can include things like `where`,\n`skip`, `take`, abd `orderBy`. The `query` function will be passed the arguments for the field, and\nthe context for the current request. Because it is used for pre-loading data, and solving n+1\nissues, it can not be passed the `parent` object because it may not be loaded yet.\n\nIf your field has a `resolve` method the generated `query` will be passed in as part of the first\narg to your resolve function\n\n```typescript\nbuilder.prismaObject('User', {\n findUnique: null,\n fields: (t) => ({\n id: t.exposeID('id'),\n email: t.exposeString('email'),\n posts: t.relation('posts', {\n // We can define arguments like any other field\n args: {\n oldestFirst: t.arg.boolean(),\n },\n // Then we can generate our query conditions based on the arguments\n query: (args, context) => ({\n orderBy: {\n createdAt: args.oldestFirst ? 'asc' : 'desc',\n },\n }),\n // optional: query here will contain the orderBy (and any other properties returned by the query method)\n resolve: (query, post) => db.post.findMany({ ...query, where: { id: post.authorId } }),\n }),\n }),\n});\n```\n\nIt is _VERY IMPORTANT_ to put all your filtering and sorting into the query method rather than your\nresolver because the resolver is only used as fallback, and any filtering that does not exist in the\nquery method will not be applied correctly. If you have a where in both your query and your\nresolver, you will need to ensure these are merged correctly. It is generally better NOT to use a\ncustom resolver.\n\n## relationCount\n\nPrisma supports querying for\n[relation counts](https://www.prisma.io/docs/concepts/components/prisma-client/aggregation-grouping-summarizing#count-relations)\nwhich allow including counts for relations along side other `includes`. This does not currently\nsupport any filters on the counts, but can give a total count for a relation.\n\n```typescript\nbuilder.prismaObject('User', {\n findUnique: (user) => ({ id: user.id }),\n fields: (t) => ({\n id: t.exposeID('id'),\n postCount: t.relationCount('posts'),\n }),\n});\n```\n\n## Includes on types\n\nIn some cases, you may want to always pre-load certain relations. This can be helpful for defining\nfields directly on type where the underlying data may come from a related table.\n\n```typescript\nbuilder.prismaObject('User', {\n // This will always include the profile when a user object is loaded. Deeply nested relations can\n // also be included this way.\n include: {\n profile: true,\n },\n findUnique: (user) => ({ id: user.id }),\n fields: (t) => ({\n id: t.exposeID('id'),\n email: t.exposeString('email'),\n bio: t.string({\n // The profile relation will always be loaded, and user will now be typed to include the\n // profile field so you can return the bio from the nested profile relation.\n resolve: (user) => user.profile.bio,\n }),\n }),\n});\n```\n\n## Select mode for types\n\nBy default, the prisma plugin will use `include` when including relations, or generating fallback\nqueries. This means we are always loading all columns of a table when loading it in a\n`t.prismaField` or a `t.relation`. This is usually what we want, but in some cases, you may want to\nselect specific columns instead. This can be useful if you have tables with either a very large\nnumber of columns, or specific columns with large payloads you want to avoid loading.\n\nTo do this, you can add a `select` instead of an include to your `prismaObject`:\n\n```typescript\nbuilder.prismaObject('User', {\n select: {\n id: true,\n },\n findUnique: (user) => ({ id: user.id }),\n fields: (t) => ({\n id: t.exposeID('id'),\n email: t.exposeString('email'),\n }),\n});\n```\n\nAt the very least, you will need to `select` the properties required by your `findUnique` function.\nThe `t.expose*` and `t.relation` methods will all automatically add selections for the exposed\nfields _WHEN THEY ARE QUERIED_, ensuring that only the requested columns will be loaded from the\ndatabase.\n\nIn addition to the `t.expose` and `t.relation`, you can also add custom selections to other fields:\n\n```typescript\nbuilder.prismaObject('User', {\n select: {\n id: true,\n },\n findUnique: (user) => ({ id: user.id }),\n fields: (t) => ({\n id: t.exposeID('id'),\n email: t.exposeString('email'),\n bio: t.string({\n // This will select user.profile.bio when the the `bio` field is queried\n select: {\n profile: {\n select: {\n bio: true,\n },\n },\n },\n resolve: (user) => user.profile.bio,\n }),\n }),\n});\n```\n\n## Type variants\n\nThe prisma plugin supports defining multiple GraphQL types based on the same prisma model.\nAdditional types are called `variants`. You will always need to have a \"Primary\" variant (defined as\ndescribed above). Additional variants can be defined by providing a `variant` option instead of a\n`name` option when creating the type:\n\n```typescript\nconst Viewer = builder.prismaObject('User', {\n variant: 'Viewer',\n findUnique: (user) => ({ id: user.id }),\n fields: (t) => ({\n id: t.exposeID('id'),\n});\n```\n\nYou can define variant fields that reference one variant from another:\n\n```typescript\nconst Viewer = builder.prismaObject('User', {\n variant: 'Viewer',\n findUnique: (user) => ({ id: user.id }),\n fields: (t) => ({\n id: t.exposeID('id'),\n // Using the model name ('User') will reference the primary variant\n user: t.variant('User'),\n });\n});\n\nconst User = builder.prismaNode('User', {\n // Testing that user is typed correctly\n authScopes: (user) => !!user.id,\n interfaces: [Named],\n id: {\n resolve: (user) => user.id,\n },\n fields: (t) => ({\n // To reference another variant, use the returned object Ref instead of the model name:\n viewer: t.variant(Viewer, {}),\n email: t.exposeString('email'),\n }),\n});\n```\n\nYou can also use variants when defining relations by providing a `type` option:\n\n```typescript\nconst PostDraft = builder.prismaNode('Post', {\n variant: 'PostDraft'\n // This is used to load the node by id\n findUnique: (id) => ({ id }),\n // This is used to get the id from a node\n id: { resolve: (post) => post.id },\n // fields work just like they do for builder.prismaObject\n fields: (t) => ({\n title: t.exposeString('title'),\n author: t.relation('author'),\n }),\n});\n\nconst Viewer = builder.prismaObject('User', {\n variant: 'Viewer',\n findUnique: (user) => ({ id: user.id }),\n fields: (t) => ({\n id: t.exposeID('id'),\n drafts: t.relation('posts', {\n // This will cause this relation to use the PostDraft variant rather than the default Post variant\n type: PostDraft,\n query: { where: { draft: true } },\n }),\n });\n});\n```\n\n## Relay integration\n\nThis plugin has extensive integration with the\n[relay plugin](https://pothos-graphql.dev/docs/plugins/relay), which makes creating nodes and\nconnections very easy.\n\n### `prismaNode`\n\nThe `prismaNode` method works just like the `prismaObject` method with a couple of small\ndifferences:\n\n- the `findUnique` function now only receives an id. This is to support relays ability to load nodes\n by id.\n- there is a new `id` option that mirrors the `id` option from `node` method of the relay plugin,\n and must contain a resolve function that returns the id from an instance of the node.\n\n```typescript\nbuilder.prismaNode('Post', {\n // This is used to load the node by id\n findUnique: (id) => ({ id }),\n // This is used to get the id from a node\n id: { resolve: (post) => post.id },\n // fields work just like they do for builder.prismaObject\n fields: (t) => ({\n title: t.exposeString('title'),\n author: t.relation('author'),\n }),\n});\n```\n\n### `prismaConnection`\n\nThe `prismaConnection` method on a field builder can be used to create a relay `connection` field\nthat also pre-loads all the data nested inside that connection.\n\n```typescript\nbuilder.queryType({\n fields: (t) => ({\n posts: t.prismaConnection(\n {\n type: 'Post',\n cursor: 'id',\n resolve: (query, parent, args, context, info) => prisma.post.findMany({ ...query }),\n }),\n {}, // optional options for the Connection type\n {}, // optional options for the Edge type),\n ),\n }),\n});\n```\n\n#### options\n\n- `type`: the name of the prisma model being connected to\n- `cursor`: a `@unique` column of the model being connected to. This is used as the `cursor` option\n passed to prisma.\n- `defaultSize`: (default: 20) The default page size to use if `first` and `last` are not provided.\n- `maxSize`: (default: 100) The maximum number of nodes returned for a connection.\n- `resolve`: Like the resolver for `prismaField`, the first argument is a `query` object that should\n be spread into your prisma query. The `resolve` function should return an array of nodes for the\n connection. The `query` will contain the correct `take`, `skip`, and `cursor` options based on the\n connection arguments (`before`, `after`, `first`, `last`), along with `include` options for nested\n selections.\n- `totalCount`: A function for loading the total count for the connection. This will add a\n `totalCount` field to the connection object. The `totalCount` method will receive (`connection`,\n `args`, `context`, `info`) as arguments\n\nThe created connection queries currently support the following combinations of connection arguments:\n\n- `first`, `last`, or `before`\n- `first` and `before`\n- `last` and `after`\n\nQueries for other combinations are not as useful, and generally requiring loading all records\nbetween 2 cursors, or between a cursor and the end of the set. Generating query options for these\ncases is more complex and likely very inefficient, so they will currently throw an Error indicating\nthe argument combinations are not supported.\n\n### `relatedConnection`\n\nThe `relatedConnection` method can be used to create a relay `connection` field based on a relation\nof the current model.\n\n```typescript\nbuilder.prismaNode('User', {\n findUnique: (id) => ({ id }),\n id: { resolve: (user) => user.id },\n fields: (t) => ({\n // Connections can be very simple to define\n simplePosts: t.relatedConnection('posts', {\n cursor: 'id',\n }),\n // Or they can include custom arguments, and other options\n posts: t.relatedConnection(\n 'posts',\n {\n cursor: 'id',\n args: {\n oldestFirst: t.arg.boolean(),\n },\n query: (args, context) => ({\n orderBy: {\n createdAt: args.oldestFirst ? 'asc' : 'desc',\n },\n }),\n },\n {}, // optional options for the Connection type\n {}, // optional options for the Edge type),\n ),\n }),\n});\n```\n\n#### options\n\n- `cursor`: a `@unique` column of the model being connected to. This is used as the `cursor` option\n passed to prisma.\n- `defaultSize`: (default: 20) The default page size to use if `first` and `last` are not provided.\n- `maxSize`: (default: 100) The maximum number of nodes returned for a connection.\n- `query`: A method that accepts the `args` and `context` for the connection field, and returns\n filtering and sorting logic that will be merged into the query for the relation.\n- `resolve`: (optional) Used as a fallback when a connection is not pre-loaded. It is optional, and\n generally should NOT be defined manually. If used it works like a combination of the `resolve`\n method of `relation` and `prismaConnection`. The default will use the `findUnique` of the current\n model, with an `include` for the current relation. It is also batched together with other\n relationships to improve query efficiency.\n- `totalCount`: when set to true, this will add a `totalCount` field to the connection object. see\n `relationCount` above for more details.\n\n## Using Prisma without a plugin\n\nUsing prisma without a plugin is relatively straight forward using the `builder.objectRef` method.\n\nThe easiest way to create types backed by prisma looks something like:\n\n```typescript\nimport { Post, PrismaClient, User } from '@prisma/client';\n\nconst db = new PrismaClient();\nconst UserObject = builder.objectRef<User>('User');\nconst PostObject = builder.objectRef<Post>('Post');\n\nUserObject.implement({\n fields: (t) => ({\n id: t.exposeID('id'),\n email: t.exposeString('email'),\n posts: t.field({\n type: [PostObject],\n resolve: (user) =>\n db.post.findMany({\n where: { authorId: user.id },\n }),\n }),\n }),\n});\n\nPostObject.implement({\n fields: (t) => ({\n id: t.exposeID('id'),\n title: t.exposeString('title'),\n author: t.field({\n type: UserObject,\n resolve: (post) =>\n db.user.findUnique({ rejectOnNotFound: true, where: { id: post.authorId } }),\n }),\n }),\n});\n\nbuilder.queryType({\n fields: (t) => ({\n me: t.field({\n type: UserObject,\n resolve: (root, args, ctx) =>\n db.user.findUnique({ rejectOnNotFound: true, where: { id: ctx.userId } }),\n }),\n }),\n});\n```\n\nThis sets up User, and Post objects with a few fields, and a `me` query that returns the current\nuser. There are a few things to note in this setup:\n\n1. We split up the `builder.objectRef` and the `implement` calls, rather than calling\n `builder.objectRef(...).implement(...)`. This prevents typescript from getting tripped up by the\n circular references between posts and users.\n2. We use rejectOnNotFound with our `findUnique` calls because those fields are not nullable.\n Without this option, prisma will return a null if the object is not found. An alternative is to\n mark these fields as nullable.\n3. The refs to our object types are called `UserObject` and `PostObject`, this is because `User` and\n `Post` are the names of the types imported from prisma. We could instead alias the types when we\n import them so we can name the refs to our GraphQL types after the models.\n\nThis setup is fairly simple, but it is easy to see the n+1 issues we might run into. Prisma helps\nwith this by batching queries together, but there are also things we can do in our implementation to\nimprove things.\n\nOne thing we could do if we know we will usually be loading the author any time we load a post is to\nmake the author part of shape required for a post:\n\n```typescript\nconst UserObject = builder.objectRef<User>('User');\n// We add the author here in the objectRef\nconst PostObject = builder.objectRef<Post & { author: User }>('Post');\n\nUserObject.implement({\n fields: (t) => ({\n id: t.exposeID('id'),\n email: t.exposeString('email'),\n posts: t.field({\n type: [PostObject],\n resolve: (user) =>\n db.post.findMany({\n // We now need to include the author when we query for posts\n include: {\n author: true,\n },\n where: { authorId: user.id },\n }),\n }),\n }),\n});\n\nPostObject.implement({\n fields: (t) => ({\n id: t.exposeID('id'),\n title: t.exposeString('title'),\n author: t.field({\n type: UserObject,\n // Now we can just return the author from the post instead of querying for it\n resolve: (post) => post.author,\n }),\n }),\n});\n```\n\nWe may not always want to query for the author though, so we could make the author optional and fall\nback to using a query if it was not provided by the parent resolver:\n\n```typescript\nconst PostObject = builder.objectRef<Post & { author?: User }>('Post');\n\nPostObject.implement({\n fields: (t) => ({\n id: t.exposeID('id'),\n title: t.exposeString('title'),\n author: t.field({\n type: UserObject,\n resolve: (post) =>\n post.author ?? db.user.findUnique({ rejectOnNotFound: true, where: { id: post.authorId } }),\n }),\n }),\n});\n```\n\nWith this setup, a parent resolver has the option to include the author, but we have a fallback\nincase it does not.\n\nThere are other patterns like dataloaders than can be used to reduce n+1 issues, and make your graph\nmore efficient, but they are too complex to describe here.\n"
|
package/src/field-builder.ts
CHANGED
|
@@ -30,7 +30,7 @@ fieldBuilderProto.prismaField = function prismaField({ type, resolve, ...options
|
|
|
30
30
|
const typeParam = Array.isArray(type) ? ([typeRef] as [ObjectRef<unknown>]) : typeRef;
|
|
31
31
|
|
|
32
32
|
return this.field({
|
|
33
|
-
...options,
|
|
33
|
+
...(options as {}),
|
|
34
34
|
type: typeParam,
|
|
35
35
|
resolve: (parent: unknown, args: unknown, ctx: {}, info: GraphQLResolveInfo) => {
|
|
36
36
|
const query = queryFromInfo(ctx, info);
|
package/src/global-types.ts
CHANGED
|
@@ -43,9 +43,7 @@ declare global {
|
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
export interface ExtendDefaultTypes<PartialTypes extends Partial<UserSchemaTypes>> {
|
|
46
|
-
PrismaTypes:
|
|
47
|
-
? {}
|
|
48
|
-
: PartialTypes['PrismaTypes'] & {};
|
|
46
|
+
PrismaTypes: PartialTypes['PrismaTypes'] & {};
|
|
49
47
|
}
|
|
50
48
|
|
|
51
49
|
export interface PothosKindToGraphQLType {
|
|
@@ -281,7 +281,7 @@ export class PrismaObjectFieldBuilder<
|
|
|
281
281
|
) => ({ select: { [name]: nestedQuery(query) } });
|
|
282
282
|
|
|
283
283
|
return this.field({
|
|
284
|
-
...rest,
|
|
284
|
+
...(rest as {}),
|
|
285
285
|
type: relationField.isList ? [ref] : ref,
|
|
286
286
|
extensions: {
|
|
287
287
|
...extensions,
|
|
@@ -318,7 +318,7 @@ export class PrismaObjectFieldBuilder<
|
|
|
318
318
|
};
|
|
319
319
|
|
|
320
320
|
return this.field({
|
|
321
|
-
...rest,
|
|
321
|
+
...(rest as {}),
|
|
322
322
|
type: 'Int',
|
|
323
323
|
nullable: false,
|
|
324
324
|
select: countSelect as never,
|
|
@@ -347,10 +347,10 @@ export class PrismaObjectFieldBuilder<
|
|
|
347
347
|
nestedQuery({});
|
|
348
348
|
|
|
349
349
|
return this.field({
|
|
350
|
-
...options,
|
|
350
|
+
...(options as {}),
|
|
351
351
|
type: ref,
|
|
352
352
|
select: selfSelect as never,
|
|
353
|
-
resolve: (parent, args, context, info) => parent,
|
|
353
|
+
resolve: (parent, args, context, info) => parent as never,
|
|
354
354
|
}) as FieldRef<Model['Shape'], 'Object'>;
|
|
355
355
|
}
|
|
356
356
|
|
package/src/schema-builder.ts
CHANGED
|
@@ -2,12 +2,10 @@ import './global-types';
|
|
|
2
2
|
import { GraphQLResolveInfo } from 'graphql';
|
|
3
3
|
import SchemaBuilder, {
|
|
4
4
|
brandWithType,
|
|
5
|
-
FieldNullability,
|
|
6
5
|
FieldRef,
|
|
7
6
|
InterfaceRef,
|
|
8
7
|
OutputType,
|
|
9
8
|
SchemaTypes,
|
|
10
|
-
TypeParam,
|
|
11
9
|
} from '@pothos/core';
|
|
12
10
|
import { PrismaObjectFieldBuilder } from './field-builder';
|
|
13
11
|
import { ModelLoader } from './model-loader';
|
|
@@ -27,14 +25,7 @@ schemaBuilderProto.prismaObject = function prismaObject(type, { fields, findUniq
|
|
|
27
25
|
ref.name = name;
|
|
28
26
|
|
|
29
27
|
this.objectType(ref, {
|
|
30
|
-
...(options as {}
|
|
31
|
-
SchemaTypes,
|
|
32
|
-
unknown,
|
|
33
|
-
TypeParam<SchemaTypes>,
|
|
34
|
-
FieldNullability<SchemaTypes>,
|
|
35
|
-
{},
|
|
36
|
-
unknown
|
|
37
|
-
>),
|
|
28
|
+
...(options as {}),
|
|
38
29
|
extensions: {
|
|
39
30
|
...options.extensions,
|
|
40
31
|
pothosPrismaInclude: options.include,
|
package/tsconfig.json
CHANGED
|
@@ -1,21 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"
|
|
3
|
+
"noEmit": false,
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"declarationMap": true,
|
|
6
|
+
"emitDeclarationOnly": true,
|
|
7
|
+
"outDir": "dts",
|
|
4
8
|
"rootDir": "src"
|
|
5
9
|
},
|
|
6
|
-
"exclude": [
|
|
7
|
-
"lib",
|
|
8
|
-
"tests"
|
|
9
|
-
],
|
|
10
|
-
"extends": "../../tsconfig.options.json",
|
|
11
10
|
"include": [
|
|
12
|
-
"src/**/*"
|
|
13
|
-
"types/**/*",
|
|
14
|
-
"../../types/**/*"
|
|
11
|
+
"src/**/*"
|
|
15
12
|
],
|
|
16
|
-
"
|
|
17
|
-
{
|
|
18
|
-
"path": "../test-utils"
|
|
19
|
-
}
|
|
20
|
-
]
|
|
13
|
+
"extends": "../../tsconfig.options.json",
|
|
21
14
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/version.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/jsutils/Maybe.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/language/source.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/jsutils/ObjMap.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/jsutils/Path.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/jsutils/PromiseOrValue.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/language/kinds.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/language/tokenKind.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/language/ast.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/language/location.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/error/GraphQLError.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/language/directiveLocation.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/type/directives.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/type/schema.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/type/definition.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/execution/execute.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/graphql.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/type/scalars.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/type/introspection.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/type/validate.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/type/assertName.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/type/index.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/language/printLocation.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/language/lexer.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/language/parser.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/language/printer.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/language/visitor.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/language/predicates.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/language/index.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/execution/subscribe.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/execution/values.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/execution/index.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/subscription/index.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/TypeInfo.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/ValidationContext.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/validate.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/specifiedRules.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/ExecutableDefinitionsRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/KnownArgumentNamesRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/KnownDirectivesRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/KnownFragmentNamesRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/KnownTypeNamesRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/LoneAnonymousOperationRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/NoFragmentCyclesRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/NoUndefinedVariablesRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/NoUnusedFragmentsRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/NoUnusedVariablesRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/ScalarLeafsRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/UniqueArgumentNamesRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/UniqueFragmentNamesRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/UniqueOperationNamesRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/UniqueVariableNamesRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/VariablesAreInputTypesRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/UniqueOperationTypesRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/UniqueTypeNamesRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/validation/index.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/error/syntaxError.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/error/locatedError.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/error/index.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/getIntrospectionQuery.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/getOperationAST.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/getOperationRootType.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/introspectionFromSchema.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/buildClientSchema.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/buildASTSchema.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/extendSchema.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/lexicographicSortSchema.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/printSchema.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/typeFromAST.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/valueFromAST.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/valueFromASTUntyped.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/astFromValue.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/coerceInputValue.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/concatAST.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/separateOperations.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/stripIgnoredCharacters.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/typeComparators.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/assertValidName.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/findBreakingChanges.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/typedQueryDocumentNode.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/utilities/index.d.ts","../../node_modules/.pnpm/graphql@16.3.0/node_modules/graphql/index.d.ts","../core/dts/types/utils.d.ts","../core/dts/types/global/type-options.d.ts","../core/dts/types/global/field-options.d.ts","../core/dts/types/builder-options.d.ts","../core/dts/types/configs.d.ts","../core/dts/plugins/plugin.d.ts","../core/dts/plugins/merge-plugins.d.ts","../core/dts/plugins/index.d.ts","../core/dts/types/plugins.d.ts","../core/dts/types/schema-types.d.ts","../core/dts/types/type-params.d.ts","../core/dts/types/index.d.ts","../core/dts/config-store.d.ts","../core/dts/builder.d.ts","../core/dts/fieldUtils/base.d.ts","../core/dts/fieldUtils/root.d.ts","../core/dts/fieldUtils/builder.d.ts","../core/dts/fieldUtils/input.d.ts","../core/dts/refs/base.d.ts","../core/dts/refs/enum.d.ts","../core/dts/refs/input-object.d.ts","../core/dts/refs/interface.d.ts","../core/dts/refs/object.d.ts","../core/dts/refs/scalar.d.ts","../core/dts/refs/union.d.ts","../core/dts/types/global/classes.d.ts","../core/dts/types/global/schema-types.d.ts","../core/dts/types/global/index.d.ts","../core/dts/utils/context-cache.d.ts","../core/dts/utils/enums.d.ts","../core/dts/utils/input.d.ts","../core/dts/utils/params.d.ts","../core/dts/utils/sort-classes.d.ts","../core/dts/utils/index.d.ts","../core/dts/build-cache.d.ts","../core/dts/refs/builtin-scalar.d.ts","../core/dts/refs/field.d.ts","../core/dts/refs/input.d.ts","../core/dts/refs/input-field.d.ts","../core/dts/refs/output.d.ts","../core/dts/index.d.ts","./src/node-ref.ts","./src/global-types.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/globals.global.d.ts","../../node_modules/.pnpm/@types+node@17.0.23/node_modules/@types/node/index.d.ts","./tests/client/runtime/index.d.ts","./tests/client/index.d.ts","./src/util/cursors.ts","./src/util/datamodel.ts","./src/util/deep-equal.ts","../../node_modules/.pnpm/@prisma+generator-helper@3.12.0/node_modules/@prisma/generator-helper/dist/dmmf.d.ts","../../node_modules/.pnpm/@prisma+generator-helper@3.12.0/node_modules/@prisma/generator-helper/dist/types.d.ts","../../node_modules/.pnpm/@prisma+generator-helper@3.12.0/node_modules/@prisma/generator-helper/dist/generatorHandler.d.ts","../../node_modules/.pnpm/@prisma+generator-helper@3.12.0/node_modules/@prisma/generator-helper/dist/GeneratorProcess.d.ts","../../node_modules/.pnpm/@prisma+generator-helper@3.12.0/node_modules/@prisma/generator-helper/dist/index.d.ts","./src/util/relation-map.ts","./src/util/selections.ts","./src/model-loader.ts","./src/util/loader-map.ts","./src/util/map-query.ts","./src/schema-builder.ts","./src/index.ts","./src/object-ref.ts","./src/types.ts","./src/prisma-field-builder.ts","./src/field-builder.ts","../../node_modules/.pnpm/typescript@4.6.3/node_modules/typescript/lib/typescript.d.ts","./src/generator.ts","../../node_modules/.pnpm/graphql-tag@2.12.6_graphql@16.3.0/node_modules/graphql-tag/lib/index.d.ts","../plugin-errors/dts/types.d.ts","../plugin-errors/dts/global-types.d.ts","../plugin-errors/dts/index.d.ts","../plugin-relay/dts/types.d.ts","../plugin-relay/dts/global-types.d.ts","../plugin-relay/dts/field-builder.d.ts","../plugin-relay/dts/input-field-builder.d.ts","../plugin-relay/dts/schema-builder.d.ts","../plugin-relay/dts/utils/connections.d.ts","../plugin-relay/dts/utils/resolve-nodes.d.ts","../plugin-relay/dts/utils/index.d.ts","../plugin-relay/dts/index.d.ts","../plugin-scope-auth/dts/request-cache.d.ts","../plugin-scope-auth/dts/types.d.ts","../plugin-scope-auth/dts/global-types.d.ts","../plugin-scope-auth/dts/schema-builder.d.ts","../plugin-scope-auth/dts/errors.d.ts","../plugin-scope-auth/dts/index.d.ts","./tests/generated.ts","./tests/example/builder.ts","./tests/example/schema/index.ts","./tests/connections.test.ts","./tests/counts.test.ts","./tests/index.test.ts","./tests/nodes.test.ts","./tests/relation-query.test.ts","./tests/select-mode.test.ts","./tests/type-include.test.ts","./tests/variants.test.ts","./tests/client/runtime/index-browser.d.ts","./tests/client/runtime/proxy.d.ts","../test-utils/dts/create-server.d.ts","../test-utils/dts/index.d.ts","./tests/example/server.ts","./tests/example/schema/more.ts","../../node_modules/.pnpm/@types+accepts@1.3.5/node_modules/@types/accepts/index.d.ts","../../node_modules/.pnpm/@types+estree@0.0.51/node_modules/@types/estree/index.d.ts","../../node_modules/.pnpm/@types+acorn@4.0.6/node_modules/@types/acorn/index.d.ts","../../node_modules/.pnpm/@babel+types@7.17.0/node_modules/@babel/types/lib/index.d.ts","../../node_modules/.pnpm/@types+babel__generator@7.6.4/node_modules/@types/babel__generator/index.d.ts","../../node_modules/.pnpm/@babel+parser@7.17.8/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/.pnpm/@types+babel__template@7.4.1/node_modules/@types/babel__template/index.d.ts","../../node_modules/.pnpm/@types+babel__traverse@7.14.2/node_modules/@types/babel__traverse/index.d.ts","../../node_modules/.pnpm/@types+babel__core@7.1.19/node_modules/@types/babel__core/index.d.ts","../../node_modules/.pnpm/@types+connect@3.4.35/node_modules/@types/connect/index.d.ts","../../node_modules/.pnpm/@types+body-parser@1.19.2/node_modules/@types/body-parser/index.d.ts","../../node_modules/.pnpm/@types+cors@2.8.12/node_modules/@types/cors/index.d.ts","../../node_modules/.pnpm/@types+cross-spawn@6.0.2/node_modules/@types/cross-spawn/index.d.ts","../../node_modules/.pnpm/@types+ms@0.7.31/node_modules/@types/ms/index.d.ts","../../node_modules/.pnpm/@types+debug@4.1.7/node_modules/@types/debug/index.d.ts","../../node_modules/.pnpm/@types+eslint@8.4.1/node_modules/@types/eslint/helpers.d.ts","../../node_modules/.pnpm/@types+json-schema@7.0.11/node_modules/@types/json-schema/index.d.ts","../../node_modules/.pnpm/@types+eslint@8.4.1/node_modules/@types/eslint/index.d.ts","../../node_modules/.pnpm/@types+estree-jsx@0.0.1/node_modules/@types/estree-jsx/index.d.ts","../../node_modules/.pnpm/@types+range-parser@1.2.4/node_modules/@types/range-parser/index.d.ts","../../node_modules/.pnpm/@types+qs@6.9.7/node_modules/@types/qs/index.d.ts","../../node_modules/.pnpm/@types+express-serve-static-core@4.17.28/node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/.pnpm/@types+mime@1.3.2/node_modules/@types/mime/index.d.ts","../../node_modules/.pnpm/@types+serve-static@1.13.10/node_modules/@types/serve-static/index.d.ts","../../node_modules/.pnpm/@types+express@4.17.13/node_modules/@types/express/index.d.ts","../../node_modules/.pnpm/@types+graceful-fs@4.1.5/node_modules/@types/graceful-fs/index.d.ts","../../node_modules/.pnpm/@types+unist@2.0.6/node_modules/@types/unist/index.d.ts","../../node_modules/.pnpm/@types+hast@2.3.4/node_modules/@types/hast/index.d.ts","../../node_modules/.pnpm/ci-info@3.3.0/node_modules/ci-info/index.d.ts","../../node_modules/.pnpm/@types+is-ci@3.0.0/node_modules/@types/is-ci/index.d.ts","../../node_modules/.pnpm/@types+istanbul-lib-coverage@2.0.4/node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/.pnpm/@types+istanbul-lib-report@3.0.0/node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/.pnpm/@types+istanbul-reports@3.0.1/node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../../node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/.pnpm/pretty-format@27.5.1/node_modules/pretty-format/build/types.d.ts","../../node_modules/.pnpm/pretty-format@27.5.1/node_modules/pretty-format/build/index.d.ts","../../node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff/build/types.d.ts","../../node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff/build/index.d.ts","../../node_modules/.pnpm/jest-matcher-utils@27.5.1/node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/.pnpm/@types+jest@27.4.1/node_modules/@types/jest/index.d.ts","../../node_modules/.pnpm/@types+js-yaml@4.0.5/node_modules/@types/js-yaml/index.d.ts","../../node_modules/.pnpm/@types+json-stable-stringify@1.0.34/node_modules/@types/json-stable-stringify/index.d.ts","../../node_modules/.pnpm/@types+json5@0.0.29/node_modules/@types/json5/index.d.ts","../../node_modules/.pnpm/@types+jsonwebtoken@8.5.8/node_modules/@types/jsonwebtoken/index.d.ts","../../node_modules/.pnpm/@types+long@4.0.1/node_modules/@types/long/index.d.ts","../../node_modules/.pnpm/@types+mdast@3.0.10/node_modules/@types/mdast/index.d.ts","../../node_modules/.pnpm/@types+mdurl@1.0.2/node_modules/@types/mdurl/encode.d.ts","../../node_modules/.pnpm/@types+mdurl@1.0.2/node_modules/@types/mdurl/decode.d.ts","../../node_modules/.pnpm/@types+mdurl@1.0.2/node_modules/@types/mdurl/parse.d.ts","../../node_modules/.pnpm/@types+mdurl@1.0.2/node_modules/@types/mdurl/format.d.ts","../../node_modules/.pnpm/@types+mdurl@1.0.2/node_modules/@types/mdurl/index.d.ts","../../node_modules/.pnpm/@types+mdx@2.0.1/node_modules/@types/mdx/types.d.ts","../../node_modules/.pnpm/@types+mdx@2.0.1/node_modules/@types/mdx/index.d.ts","../../node_modules/.pnpm/@types+minimist@1.2.2/node_modules/@types/minimist/index.d.ts","../../node_modules/.pnpm/@types+nlcst@1.0.0/node_modules/@types/nlcst/index.d.ts","../../node_modules/.pnpm/form-data@3.0.1/node_modules/form-data/index.d.ts","../../node_modules/.pnpm/@types+node-fetch@2.6.1/node_modules/@types/node-fetch/externals.d.ts","../../node_modules/.pnpm/@types+node-fetch@2.6.1/node_modules/@types/node-fetch/index.d.ts","../../node_modules/.pnpm/@types+normalize-package-data@2.4.1/node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/.pnpm/@types+parse-json@4.0.0/node_modules/@types/parse-json/index.d.ts","../../node_modules/.pnpm/@types+prettier@2.4.4/node_modules/@types/prettier/index.d.ts","../../node_modules/.pnpm/@types+prop-types@15.7.4/node_modules/@types/prop-types/index.d.ts","../../node_modules/.pnpm/@types+react@17.0.43/node_modules/@types/react/global.d.ts","../../node_modules/.pnpm/csstype@3.0.11/node_modules/csstype/index.d.ts","../../node_modules/.pnpm/@types+scheduler@0.16.2/node_modules/@types/scheduler/tracing.d.ts","../../node_modules/.pnpm/@types+react@17.0.43/node_modules/@types/react/index.d.ts","../../node_modules/.pnpm/@types+scheduler@0.16.2/node_modules/@types/scheduler/index.d.ts","../../node_modules/.pnpm/@types+semver@6.2.3/node_modules/@types/semver/index.d.ts","../../node_modules/.pnpm/@types+stack-utils@2.0.1/node_modules/@types/stack-utils/index.d.ts","../../node_modules/.pnpm/@types+tailwindcss@3.0.10/node_modules/@types/tailwindcss/plugin.d.ts","../../node_modules/.pnpm/@types+tailwindcss@3.0.10/node_modules/@types/tailwindcss/tailwind-config.d.ts","../../node_modules/.pnpm/@types+tailwindcss@3.0.10/node_modules/@types/tailwindcss/index.d.ts","../../node_modules/.pnpm/@types+websocket@1.0.5/node_modules/@types/websocket/index.d.ts","../../node_modules/.pnpm/@types+ws@8.5.3/node_modules/@types/ws/index.d.ts","../../node_modules/.pnpm/@types+yargs-parser@21.0.0/node_modules/@types/yargs-parser/index.d.ts","../../node_modules/.pnpm/@types+yargs@17.0.10/node_modules/@types/yargs/index.d.ts","../../node_modules/.pnpm/@types+yoga-layout@1.9.2/node_modules/@types/yoga-layout/index.d.ts","../../node_modules/.pnpm/@types+yup@0.29.11/node_modules/@types/yup/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","2f93dda35dafec68ec217c9ce67f0f4fbbbb030c055ac312641565ad60dd7e26","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"e8c9f4e445a489991ca1a4232667de3ac36b07ba75ea335971fbeacf2d26fe67","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"78647004e18e4c16b8a2e8345fca9267573d1c5a29e11ddfee71858fd077ef6e","0804044cd0488cb7212ddbc1d0f8e1a5bd32970335dbfc613052304a1b0318f9","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","85084ae98c1d319e38ef99b1216d3372a9afd7a368022c01c3351b339d52cb58","898ec2410fae172e0a9416448b0838bed286322a5c0c8959e8e39400cd4c5697","692345a43bac37c507fa7065c554258435ab821bbe4fb44b513a70063e932b45","f473be7c909dbd10c40f013e70da40f24648b2abb01025436fe0a0eecd0e83be","c98583f02275727ead0256c97298c15fb77a1c1e473b03c3b61291c63c66d385","9a7904e39add402d71343ac8de5303e990d9abb1fc703c64991c655b718267a5","522edc786ed48304671b935cf7d3ed63acc6636ab9888c6e130b97a6aea92b46","0dc062870d34785429bb959d9308eb73c4f3b5111e58773b986ba9f681ba9ea5","7920b8aa27a7b6a90bf9f5dc21eedac7f38ca8717ebe70495ab616eb52b3247b","a53039ba614075aeb702271701981babbd0d4f4dcbf319ddee4c08fb8196cc7a","6758f7b72fa4d38f4f4b865516d3d031795c947a45cc24f2cfba43c91446d678","2395a86f860ac7c413f927085844fd5b32335566d014ed400ce46931349dff66","dc1a664c33f6ddd2791569999db2b3a476e52c5eeb5474768ffa542b136d78c0","bdf7abbd7df4f29b3e0728684c790e80590b69d92ed8d3bf8e66d4bd713941fe","8decb32fc5d44b403b46c3bb4741188df4fbc3c66d6c65669000c5c9cd506523","391d72e39677e72ba87f890f7a6e53a1830a07bf3fdd6128fe59ac028d7817a1","c26dd198f2793bbdcc55103823a2767d6223a7fdb92486c18b86deaf63208354","93551b302a808f226f0846ad8012354f2d53d6dedc33b540d6ca69836781a574","f0ff1c010d5046af3874d3b4df746c6f3921e4b3fbdec61dee0792fc0cb36ccd","778b684ebc6b006fcffeab77d25b34bf6e400100e0ec0c76056e165c6399ab05","463851fa993af55fb0296e0d6afa27407ef91bf6917098dd665aba1200d250c7","0a13027e3939d08a00e8bf5a99500c9bcafed3d58d7da856093af83add1fb102","be8f369f8d7e887eab87a3e4e41f1afcf61bf06056801383152aa83bda1f6a72","352bfb5f3a9d8a9c2464ad2dc0b2dc56a8212650a541fb550739c286dd341de1","a5aae636d9afdacb22d98e4242487436d8296e5a345348325ccc68481fe1b690","d007c769e33e72e51286b816d82cd7c3a280cba714e7f958691155068bd7150a","c62947664e97a5f6502834551b0a66873f5580019e1a00500fa02c2f52ef3d0e","8e45899623ebaa113802aa8932c46e506ccb47dc73b1a74cf236149c43d4f4e5","7400c1dfe7f56938af00d4ac195399e8e71d290e6d7627ebcb0228f9acfbb2bc","70441eda704feffd132be0c1541f2c7f6bbaafce25cb9b54b181e26af3068e79","d1addb12403afea87a1603121396261a45190886c486c88e1a5d456be17c2049","15d43873064dc8787ca1e4c39149be59183c404d48a8cd5a0ea019bb5fdf8d58","ea4b5d319625203a5a96897b057fddf6017d0f9a902c16060466fe69cc007243","3d06897c536b4aad2b2b015d529270439f2cadd89ca2ff7bd8898ee84898dd88","ab01d8fcb89fae8eda22075153053fefac69f7d9571a389632099e7a53f1922d","bac0ec1f4c61abc7c54ccebb0f739acb0cdbc22b1b19c91854dc142019492961","566b0806f9016fa067b7fecf3951fcc295c30127e5141223393bde16ad04aa4a","8e801abfeda45b1b93e599750a0a8d25074d30d4cc01e3563e56c0ff70edeb68","902997f91b09620835afd88e292eb217fbd55d01706b82b9a014ff408f357559","a3727a926e697919fb59407938bd8573964b3bf543413b685996a47df5645863","83f36c0792d352f641a213ee547d21ea02084a148355aa26b6ef82c4f61c1280","dce7d69c17a438554c11bbf930dec2bee5b62184c0494d74da336daee088ab69","1e8f2cda9735002728017933c54ccea7ebee94b9c68a59a4aac1c9a58aa7da7d","e327a2b222cf9e5c93d7c1ed6468ece2e7b9d738e5da04897f1a99f49d42cca1","65165246b59654ec4e1501dd87927a0ef95d57359709e00e95d1154ad8443bc7","f1bacba19e2fa2eb26c499e36b5ab93d6764f2dba44be3816f12d2bc9ac9a35b","bce38da5fd851520d0cb4d1e6c3c04968cec2faa674ed321c118e97e59872edc","3398f46037f21fb6c33560ceca257259bd6d2ea03737179b61ea9e17cbe07455","6e14fc6c27cb2cb203fe1727bb3a923588f0be8c2604673ad9f879182548daca","12b9bcf8395d33837f301a8e6d545a24dfff80db9e32f8e8e6cf4b11671bb442","04295cc38689e32a4ea194c954ea6604e6afb6f1c102104f74737cb8cf744422","7418f434c136734b23f634e711cf44613ca4c74e63a5ae7429acaee46c7024c8","27d40290b7caba1c04468f2b53cf7112f247f8acdd7c20589cd7decf9f762ad0","2608b8b83639baf3f07316df29202eead703102f1a7e32f74a1b18cf1eee54b5","c93657567a39bd589effe89e863aaadbc339675fca6805ae4d97eafbcce0a05d","909d5db5b3b19f03dfb4a8f1d00cf41d2f679857c28775faf1f10794cbbe9db9","e4504bffce13574bab83ab900b843590d85a0fd38faab7eff83d84ec55de4aff","8ab707f3c833fc1e8a51106b8746c8bc0ce125083ea6200ad881625ae35ce11e","730ddc2386276ac66312edbcc60853fedbb1608a99cb0b1ff82ebf26911dba1f","c1b3fa201aa037110c43c05ea97800eb66fea3f2ecc5f07c6fd47f2b6b5b21d2","636b44188dc6eb326fd566085e6c1c6035b71f839d62c343c299a35888c6f0a9","3b2105bf9823b53c269cabb38011c5a71360c8daabc618fec03102c9514d230c","f96e63eb56e736304c3aef6c745b9fe93db235ddd1fec10b45319c479de1a432","acb4f3cee79f38ceba975e7ee3114eb5cd96ccc02742b0a4c7478b4619f87cd6","cfc85d17c1493b6217bad9052a8edc332d1fde81a919228edab33c14aa762939","eebda441c4486c26de7a8a7343ebbc361d2b0109abff34c2471e45e34a93020a","727b4b8eb62dd98fa4e3a0937172c1a0041eb715b9071c3de96dad597deddcab","708e2a347a1b9868ccdb48f3e43647c6eccec47b8591b220afcafc9e7eeb3784","6bb598e2d45a170f302f113a5b68e518c8d7661ae3b59baf076be9120afa4813","c28e058db8fed2c81d324546f53d2a7aaefff380cbe70f924276dbad89acd7d1","ebe8f07bb402102c5a764b0f8e34bd92d6f50bd7ac61a2452e76b80e02f9bb4b","826a98cb79deab45ccc4e5a8b90fa64510b2169781a7cbb83c4a0a8867f4cc58","618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5","da129261494c4094bf55c761ba5f0ae4d5426d83ed5e312bc7f8600727bb8a05","a4cc469f3561ea3edc57e091f4c9dcaf7485a70d3836be23a6945db46f0acd0b","91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90","2978e33a00b4b5fb98337c5e473ab7337030b2f69d1480eccef0290814af0d51","ba71e9777cb5460e3278f0934fd6354041cb25853feca542312807ce1f18e611","608dbaf8c8bb64f4024013e73d7107c16dba4664999a8c6e58f3e71545e48f66","61937cefd7f4d6fa76013d33d5a3c5f9b0fc382e90da34790764a0d17d6277fb","af7db74826f455bfef6a55a188eb6659fd85fdc16f720a89a515c48724ee4c42","d6ce98a960f1b99a72de771fb0ba773cb202c656b8483f22d47d01d68f59ea86","2a47dc4a362214f31689870f809c7d62024afb4297a37b22cb86f679c4d04088","42d907ac511459d7c4828ee4f3f81cc331a08dc98d7b3cb98e3ff5797c095d2e","63d010bff70619e0cdf7900e954a7e188d3175461182f887b869c312a77ecfbd","1452816d619e636de512ca98546aafb9a48382d570af1473f0432a9178c4b1ff","9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e","8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3","5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37","ca0ca4ca5ad4772161ee2a99741d616fea780d777549ba9f05f4a24493ab44e1","e7ee7be996db0d7cce41a85e4cae3a5fc86cf26501ad94e0a20f8b6c1c55b2d4","72263ae386d6a49392a03bde2f88660625da1eca5df8d95120d8ccf507483d20","b498375d015f01585269588b6221008aae6f0c0dc53ead8796ace64bdfcf62ea","08b603e3737ff32a685eefca3e7f21324b8b868f3322416cef759f8a54d234ef","34534c0ead52cc753bdfdd486430ef67f615ace54a4c0e5a3652b4116af84d6d","a1079b54643537f75fa4f4bb963d787a302bddbe3a6001c4b0a524b746e6a9de","c4d365a631f0a0c91f43793f8adde790ac43a6caddd52b1d04698e7fc670c63e","c1d492972c58fca2cd656da2eacec6fe9fe1160d9dcf6c04363d1458608bf410",{"version":"a049128e24dccfef3a7da8b0455bc511735f4b0a96a25e59c88a92fe4cb5db8a","affectsGlobalScope":true},{"version":"c1bae8767cedbcb58d8e95c2302c1da95639bf87e7eaed6c456ecabfa94fe0db","affectsGlobalScope":true},"5b9ab8b6c4648ffe572d4a6dff6af6835eaae7b4acb5df53cf0411911de76da0","d2cd2877164ddba5d9652ef89c31ec7da2b78d182760308966aa640ca9eb938b","fb31dae6f24455869fdd45aeb2bfa8878419d335a7a6d6c085236f47553714b4","c1a37c4cb741165eeecda45b02bfc6e9ed233c2335f00d115258acb9f68f98aa","377fa47eea9bd3dac63682ab52a3c6b9d3b409e41a3b6c729ecde3fe7a42e544","0fb4231a952265a6a03406da2fa4b84fa427526ff0e8fc85f8e743f1177853b0","4669094a8832adfff0017910f34fa2f492915dcaf479f358cee311640b23dde5","84e063ce7cbf2fde335572874f8cbafe85a0cd07a93f0a54f7defaa964f7d54b","121cf7d3284e8954c6813b39e1a4cafa97015607a92b5512d6844b08694a65f8","4c49941380bd1a28a8d7a47c0e737e7c7f4815133c72651fb34419190b58a053","f2365e13d9b7e1cb046fa261795c4ca5b3abf7dbe32b92c4b4d27bc0beb22595","29ba91acb67e6893248122097f094ae988d51db0ebfdefc44059a45e389df34d","828a59947ee024b5d8593ac33e5e32b28433b5206ea2568cdfa9aed4b0e1e238","915decb0d64482d8f64a57e5d4e9ad56b498e8e3135bfbc20c3ab0d68aaa77eb","47cd904e4ea8f6dcbd80a8e24c3bc80c8d7473c8249a1a6773c125b619062195","66b032747b350a865dc6e5592c2d7d1751b0f5e1db8d584680e312d51ee0c22c","97a799fec76a4903afdb094a532a3e68594ce65b3e0893a3619378c00a0a76ad","3e901b1bcbe0f78d26d09443a8a0d6623d80036a8c8625aeebaf4dc7ceba5714","45f1a587a3a881e5e1daceb553c5f44257676aa969c1861668f3965e09c3343c","a37986d5820bd6bdabd10dab35af292755d62c473dea76daa9f8fa457af2a6e1","7fe9c350f57b42437d739394dede5f7fd63c456da56f7962e7c7f229e511011a","c78d08203457e92e83fc3df2727f643b21950349f7a7271982c257270e604a59",{"version":"1e0b60d90133356b0ac12293c6085a13ed73f3e85e5e6fd14c97db66bd09c40d","affectsGlobalScope":true},{"version":"a995a3dbec7f9b556aa7c3d6a37ca2c82ecea8b3282a7282e2118aac3a5b0007","affectsGlobalScope":true},"02029d37a6448f1817350a51bd2504ea004ad0d6c51eb058dba7cd27c00c1e95","fe2493db53c4dc09b49412975cddbdca2c431a0c0bc1f47738c189dfa99b23a6","8e9b80c8052c259f82635ff0ecf93dd6c8edd2019a3e39b3fb41cd619fdd37e8","60664c24ffbfeaf3c88cffed323f21e5b79d31dad43934c3620a3eeed6d2f3c7","527906c446238c3576d68459760a3392037d2445234ebdae7872c0e67b63ae24","5a4df0e6e9e668c60d8040cc7e568d1a4e5565b064d3a09c3d56bc5fadcdef0b","d79c1ad07f7c000e5898d43da748e8e3913b7b17ee3bf7d60ef6cc04668f2b8e","6b0aeb6b8d6b04c64cc5cb1b508135c3352c9959a766bfa63405de51739e66e5","db91ed85ed4d3fbe89b127223c083b2ad6805216a99f8ef3de226b74fa43e22c","1196bcac41e0b5e4f071369e68c6cbd6936f998204b6e46d3cea92f0ed1719fc","01661db344bfaf0a5b21d6768f203ba82f3093142e093ddf941a77caa54a1cc7","9cb09c3b86132f5ebd83fa964214ea94768c1b8edbfd9b4e8fdda4a3a12ebecc","d43c92061546df6ab16d8c87079d64f5568ed0b356ae1599bc512532cd94ef3e","28634c2a9423d6e82d1055fa9afa493b4ccff3adc5bf1607da0331f3b37eecb9","a479dd5a679ded84f1e8806a70450ab16dafca2ca7662995353d87eabc291ea2",{"version":"de76dd4a1d49166c438c1d12ab7e45d6d82daf6eb203b9e599992be2e2173d51","affectsGlobalScope":true},"0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"712ba0d43b44d144dfd01593f61af6e2e21cfae83e834d297643e7973e55ed61","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"b8aca9d0c81abb02bec9b7621983ae65bde71da6727580070602bd2500a9ce2a","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","1d94d5c94d6a429923cdb0c55bf47d37646df7c46f5cb1cc00186185ba1d6e08","fed8ee86ae13ac0fad925899311d830f36222b72f08cfd54e5810d5f96bcbcef","92ea65ed2b42e6e50b8874e6314925b1b55e4ddb84cdff414cc655b84ea091f8","e4a30cc570754f6739df8f45af026423296853089a251d2bd46fdbdca093b981","cab87bd6ba55661859c83119695e3edcdd3576d3d37136c561a23401cc8fe6bc","0a6acdbf13555976f1fa6791dcbeeb93188d175bec5c154cd3fa66e73ed8fec6","cd4f802b3350fddad26dfd8c131b36cf4a6fe8ee64ec7f81091acbc38d95a05b","acc2b4c7579ea6ad40f0c9cb28ad8e27a8ba4eb66bedd0f28138073f626f3d96","fbf0c0b89d54143dab54420658a7b596db3e0c51d712dd02a6f6077fb262ea85","bb03767c3c1fdb9aa1580bc9d9de9b2d809428dfdb2416b2c0f0b301c4432781","ee1ebb43068df0088d3bfafd261f5029dbddbf9d098dddb4422e952d3bd7491d","afc1116521906dddf4a9102eae9e84ad50692fa50cffdac3587cfcd93638da8b","68ff2090b9565a50129fbcf2a775b96b7d366f0e780a9023e08ffb0efccee0b9","070e13f196295f8ac0946726fafc1ed8e5e9e45345ea8c75509ef729af400875","758fbedc713e94713e5401afb59a6172a24800ab1e914a83889a62887638b46f","09462cc13c57bfbe2fdcfd36c6726d7495c0ef59ea9ee76b4596ff72f590cd0e","7e2a5e1f400821fa77b9c33494e5ef2bf0a35650d81df2bf82aa52398abea8e3","c47f08ef582d55a7f884fd69867b1b3150e6dbf126bcb3cb0c288d939a15e9e6","b2cb068f6dd173a93772cd16db5193ed6d91f6360acccf9e480161ce4974918c","a1a7710d947546cb6ed437d40071c1b38cdf9449e1c6445937eea7937a7d2e0f","86f56f97e1ed7aae7bd873392031d5e88b324428ae6b993d4bf19770483422a7","ba00bb2ada9a5b7e0ab18c7282c0161f5af809112e4439b35c8b3853f7d436a7","452e0a55274413c5c47895b51275d21dcabd89c2139bc39a7d5d270a3419720f","5dcd41aeb5f7119177adab46147589a1618f2b35bd976e6c3a20ec328f58d1bd","5ad0a91278dc53ab0cbf5a4dee525099e58c2bf62f5144b72a7a972f6fa12663",{"version":"ac87b421e2b833461cd563139ba2c6314dae3d140282560b683dc61a1fad006f","affectsGlobalScope":true},"f1dbe492b610a469ac206a167b057a548d5923620aa4ab4a04d4c3de5f6e9874","b37c3a34225ba050deb2ce4704ab708cff86fa5fe54eb843a9f7f9c6cce671d7",{"version":"3b97a3188d0f32c9f24488f12543e471dbdf221beea9f99b43842bfda873914b","affectsGlobalScope":true},"5c659d3fbc6cd8dbcd19eee7495645e8a274f04deed96be9d6e407a946a2323d","5507dd99223f817409766bd0025c02d5bad9e23ed3a835cf3fda745c5f268253","78699f1eb538ac10bc48a9fb0e8cb64a182b18192260bc6aa3bc0dd8f52343fe","f19ff623e49f237263d214af6cf0a5778fa874aa25a0e8ed17f38e9d4303a645","01af6fb1b2650e3f5b9b0b5adaffa3d144c3ae5f6e55907ab43080e4ac29e731","de931cb6391900071a57901e938546d086495c58efec036f3f8a9de03092f948","063673bf95927a2e47bb60daf6e89ec25514679542082d26198b6989f28151f2","3451c0fc276ef6816ed006558a9ba90bb8a0e7e097eab7fd0a4bef4d91b63698","4d0196d967105c8ba06f17b2cc6a4cfd8fa911274e4b47e07b183ffdba90f3d7",{"version":"ef252486e65c06f22ee7d934adeb3905c61321183a354e2ebea236bafd5c33f2","affectsGlobalScope":true},"3a51d3e1378d0e6cadae4086ee0e08fe052c53c6a7074eac899ece4823bf4219","92e08344df07b6ff38ab42d848ad6dedaca0ef468594365b0331ad48c99f95d0","3482688d43616b5eb0c4de3b668be3bacc5734d0344de1a17025345cfb67d283","454957ecb1f2acc6f6f9a81cfee26e10016eeb9e072320c856e4a53e235c05da","477f0920ac514fcfb2d5747c65e948cbde824efda9b77c2ee82f922823414605","727f911b9b86062d31fed2c20219deeb4d5ee22bd4ea83e9533f1f10d963793b","4a971926ca1c1c74e93243611d527f876d1e001b989cceb3c78085aa073a54fb","07eb409339d046ecf3611e55e25a3342845a7eb81228c73476bdbdf5ea2a1814","e4e1021bd09be61652213168be36965412d513f3169c85579c5543bc4ef202f3","8fd8d337b1e0c0e0b1ed3de889a748994e6715ab8c909ec3f4019bfb7e15a540","813ffde3321478a2d26ef1346654c9f275423b4f022128b67431f5cd25f5f63f","5a4090d5175780ed7a6ee569424808d37047cdb7a676c249d4ab124a641683d9","6c0806f8e017ca44f339043550f3e70592dcf9b90adb624c1fc0dff624216f1d","73b5557c8d949470159bd9f78fd77ef73591e73c9695e6651574a07a5effe93e","6a92832a3f94dfe61aa645dcd786af1af1b4a4828387c156dab93c8dca7bd553","1d94d5c94d6a429923cdb0c55bf47d37646df7c46f5cb1cc00186185ba1d6e08","3f0050043380e4c2ae24222741686ccfc7ffe064580a56721e5a9dd11844f6c1","e855a4f7f1512c1f3caf7d664c9014ce72cdb7caaab758b09e5cfca8219b4141","5a3978c8e44c75f91bb6dffb93685186484945a05eb0a8ccc1777e29e817820d","12f55a4bda242615445446ec37bf933293da25f4410338a5bb19767cd1ff539a","6738101ae8e56cd3879ab3f99630ada7d78097fc9fd334df7e766216778ca219","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","3777eb752cef9aa8dd35bb997145413310008aa54ec44766de81a7ad891526cd","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","1a7cc144992d79b062c22ac0309c6624dbb0d49bbddff7ea3b9daa0c17bcac0a","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","6fbd58e4015b9ae31ea977d4d549eb24a1102cc798b57ec5d70868b542c06612","5e3a55837aa1f42af2d2334c9b750f59f5f50a2205471875f5dd6aadc3e49ddb","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","8566fa84085caa46340393b1704ecd368491918fb45bd688d6e89736aec73a2f","f54243828d27a24d59ebf25740dfe6e7dff3931723f8ce7b658cdbe766f89da9","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true},"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","913754f9281683f22d98d0ba7796896cee30c302baefa3dda69f61af8de244d8","a3e5b8b86e7bd38d9afdc294875c4445c535319e288d3a13c1e2e41f9af934f2","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"3fe15a491a792852283caeece8142bc7427a29c183d9fec8691d95a49c8932a1","affectsGlobalScope":true},"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","13cc3979e1f548aacaa23911f2d6e69c1a2999266c4a1952806de1e9593bdaaa","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","e5dd317ef2c7a2882b152337b03d592fafa8351b40351849a16a908b198bd3b5","e8465811693dfe4e96ef2b3dffda539d6edfe896961b7af37b44db2c0e48532b","2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","3816fc03ffd9cbd1a7a3362a264756a4a1d547caabea50ca68303046be40e376","0c417b4ec46b88fb62a43ec00204700b560d01eb5677c7faa8ecd34610f096a8","13d29cdeb64e8496424edf42749bbb47de5e42d201cf958911a4638cbcffbd3f","fbf60e241aeba45fd45fb650520b562ec2d851424e1ea88874b19f109efb7284","dea028a2cce6e312408e749dca6c629785f6ffe0bc93aa9ffcd91dbd61107707","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","1b23c2aae14c17f361f6fcef69be7a298f47c27724c9a1f891ea52eeea0a9f7f","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","6209c901f30cc321f4b86800d11fad3d67e73a3308f19946b1bc642af0280298","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380",{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"ea0aa24a32c073b8639aa1f3130ba0add0f0f2f76b314d9ba988a5cb91d7e3c4","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"ce4e9cdf1ec90f3d435a4df18342b187805924f6046e872e76d3c1659ad545ff","affectsGlobalScope":true},"74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","87352bb579421f6938177a53bb66e8514067b4872ccaa5fe08ddbca56364570c","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","3201f596cd6fa931dcf33df41153776aa176f91a77e52fec5cb14faaffcd7dd4","14082971cb8c0fd34174a415d5c17b506880925cc1c23405ec42ac2e58ac687e","12fd993c7eaa09b0956f16d96bb5a1af3b72a45c4f90ed070f813976980e390f","aec59f80c62291ec634283d443b27ebe6fc6cf57670057aa9a172927675bfbea","b4358a89fcd9c579f84a6c68e2ce44ca91b07e4db3f8f403c2b7a72c1a1e04b6","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1","7693b0547e3b004443fa1f4327b61617e7317757a3e947ccc200c91111c77eca","c064519389b58e1705acfa024d9fd294cff33ce9047481516a6b59343b03c683"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"esModuleInterop":true,"experimentalDecorators":false,"module":1,"noEmitOnError":false,"noImplicitOverride":true,"noImplicitReturns":true,"removeComments":false,"skipLibCheck":true,"sourceMap":true,"strict":true,"target":6},"fileIdsList":[[236,306],[236],[198,236,243,250],[236,250],[236,249,250,251,252],[236,249],[211,236,243],[236,304],[236,306,307,308,309,310],[236,306,308],[211,236,243,312],[211,236],[198,236,243],[236,316],[236,304,318,319],[208,211,236,243,322,323],[236,313,323,324,326],[209,236,243],[236,329],[236,331],[236,333],[236,334],[236,339,344],[236,243],[236,356],[236,352,353,354,355],[236,357,358],[211,235,236,243,361,362],[193,236],[196,236],[197,202,236],[198,208,209,216,225,235,236],[198,199,208,216,236],[200,236],[201,202,209,217,236],[202,225,232,236],[203,205,208,216,236],[204,236],[205,206,236],[207,208,236],[208,236],[208,209,210,225,235,236],[208,209,210,225,236],[211,216,225,235,236],[208,209,211,212,216,225,232,235,236],[211,213,225,232,235,236],[193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242],[208,214,236],[215,235,236],[205,208,216,225,236],[217,236],[218,236],[196,219,236],[220,234,236,240],[221,236],[222,236],[208,223,236],[223,224,236,238],[208,225,226,227,236],[225,227,236],[225,226,236],[228,236],[229,236],[208,230,231,236],[230,231,236],[202,216,225,232,236],[233,236],[216,234,236],[197,211,222,235,236],[202,236],[225,236,237],[236,238],[236,239],[197,202,208,210,219,225,235,236,238,240],[225,236,241],[236,367,368,369,370],[211,236,243,325],[236,376],[236,375],[208,211,213,216,235,236,243],[208,211,213,225,232,235,236,241,243],[236,380],[211,225,236,243],[58,236,267],[51,52,58,59,236],[60,124,125,236],[51,58,60,236],[52,60,236],[51,53,54,55,58,60,63,64,236],[54,65,79,80,236],[51,58,63,64,65,236],[51,53,58,60,62,63,64,236],[51,52,63,64,65,236],[50,66,71,78,81,82,123,126,148,236],[51,236],[52,56,57,236],[52,56,57,58,59,61,72,73,74,75,76,77,236],[52,57,58,236],[52,236],[51,52,57,58,60,73,236],[58,236],[52,58,59,236],[56,58,236],[65,79,236],[51,53,54,55,58,63,236],[51,58,61,64,236],[54,62,63,64,67,68,69,70,236],[64,236],[51,53,58,60,62,64,236],[60,63,236],[51,58,62,63,64,76,236],[60,236],[51,58,64,236],[52,58,63,74,236],[63,127,236],[60,64,236],[58,63,236],[63,236],[51,61,236],[51,58,236],[58,63,64,236],[83,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,236],[63,64,236],[53,58,236],[51,53,58,64,236],[51,53,58,236],[51,58,60,62,63,64,76,83,236],[84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,236],[76,84,236],[84,236],[51,58,60,63,83,84,236],[236,337,340],[236,337,340,341,342],[236,339],[236,336,343],[236,338],[149,163,190,236],[149,161,162,190,236],[161,190,236],[161,165,190,236],[161,164,190,236],[157,161,163,170,171,172,177,183,184,185,186,187,188,189,236],[155,156,236],[149,155,161,190,236],[149,161,190,236],[149,173,236],[161,168,236],[161,236],[161,168,190,236],[149,150,190,236],[163,165,166,167,168,169,170,171,172,173,174,190,236],[149,190,236],[151,152,175,176,236],[150,153,154,158,159,160,177,236],[149,157,190,236],[190,236],[178,179,180,181,182,190,236],[162,190,236],[190,236,268,270],[149,190,236,268,269],[149,190,236,246,247,258,262,263],[209,218,236,253,265],[190,191,236,260,261,262],[149,190,192,236,256,257,258,259,262,264],[190,236,247,255,262],[190,236,260,261,262],[190,236,260],[149,190,236,246,247,254,261,262],[149,190,191,192,236,247,254,256,258,262,264],[149,190,236,261,264],[190,236,245,246,261,262],[149,190,236,258,262],[80,149,236,254,255,257,260],[190,236,253],[236,248,254,260],[236,244],[149,236,267,287,288],[190,236,245,260,270,279,285,286],[236,287],[236,287,288,300],[236,245],[190,236,271,279],[149,190,236,271,272,273,274,275,278],[190,236,271],[236,276,277],[236,285],[190,236,281,285],[149,190,236,281,282,283,284],[149,190,236,281,285],[149,190,236,280],[149,211,236,243],[236,299]],"referencedMap":[[308,1],[306,2],[252,3],[249,2],[251,4],[253,5],[250,6],[303,7],[305,8],[311,9],[307,1],[309,10],[310,1],[313,11],[312,7],[314,12],[315,13],[317,14],[318,2],[320,15],[321,8],[304,2],[324,16],[327,17],[328,18],[330,19],[332,20],[333,2],[334,21],[335,22],[345,23],[346,2],[319,2],[347,2],[348,2],[349,24],[350,2],[351,19],[353,2],[352,2],[355,25],[356,26],[354,25],[358,27],[357,2],[325,2],[359,2],[316,2],[360,19],[362,2],[363,28],[193,29],[194,29],[196,30],[197,31],[198,32],[199,33],[200,34],[201,35],[202,36],[203,37],[204,38],[205,39],[206,39],[207,40],[208,41],[209,42],[210,43],[195,2],[242,2],[211,44],[212,45],[213,46],[243,47],[214,48],[215,49],[216,50],[217,51],[218,52],[219,53],[220,54],[221,55],[222,56],[223,57],[224,58],[225,59],[227,60],[226,61],[228,62],[229,63],[230,64],[231,65],[232,66],[233,67],[234,68],[235,69],[236,70],[237,71],[238,72],[239,73],[240,74],[241,75],[364,2],[365,2],[366,2],[367,2],[323,2],[322,2],[368,2],[371,76],[372,2],[370,2],[373,2],[326,77],[374,2],[377,78],[375,2],[376,79],[329,2],[378,80],[379,81],[380,2],[381,82],[382,2],[383,2],[336,2],[331,2],[369,2],[361,83],[267,84],[60,85],[126,86],[125,87],[124,88],[65,89],[81,90],[79,91],[80,92],[66,93],[149,94],[51,2],[53,2],[54,95],[55,2],[58,96],[61,2],[78,97],[56,2],[73,98],[59,99],[74,100],[77,101],[72,102],[75,101],[52,2],[57,2],[76,103],[82,104],[70,2],[64,105],[62,106],[71,107],[68,108],[67,108],[63,109],[69,110],[83,111],[145,112],[139,113],[132,114],[131,115],[140,116],[141,101],[133,117],[146,118],[127,119],[128,120],[129,121],[148,122],[130,115],[134,118],[135,123],[142,124],[143,99],[144,123],[136,121],[147,101],[137,125],[138,126],[84,127],[123,128],[87,129],[88,129],[89,129],[90,129],[91,129],[92,129],[93,129],[94,129],[113,129],[95,129],[96,129],[97,129],[98,129],[99,129],[100,129],[120,129],[101,129],[102,129],[103,129],[118,129],[104,129],[119,129],[105,129],[116,129],[117,129],[106,129],[107,129],[108,129],[114,129],[115,129],[109,129],[110,129],[111,129],[112,129],[121,129],[122,129],[86,130],[85,131],[50,2],[337,2],[341,132],[343,133],[342,132],[340,134],[344,135],[339,136],[338,2],[12,2],[11,2],[2,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[3,2],[4,2],[24,2],[21,2],[22,2],[23,2],[25,2],[26,2],[27,2],[5,2],[28,2],[29,2],[30,2],[31,2],[6,2],[32,2],[33,2],[34,2],[35,2],[7,2],[40,2],[36,2],[37,2],[38,2],[39,2],[8,2],[44,2],[41,2],[42,2],[43,2],[45,2],[9,2],[46,2],[47,2],[48,2],[1,2],[10,2],[49,2],[265,2],[184,137],[163,138],[162,139],[164,139],[166,140],[167,139],[165,141],[190,142],[157,143],[156,144],[155,145],[168,2],[185,146],[169,147],[186,148],[188,139],[170,149],[187,147],[171,149],[172,149],[189,147],[173,147],[174,147],[153,150],[154,150],[175,151],[152,152],[177,153],[176,145],[151,150],[161,154],[158,155],[159,2],[160,156],[150,2],[178,2],[179,139],[183,157],[180,156],[181,158],[182,2],[269,159],[270,160],[268,156],[264,161],[266,162],[192,163],[260,164],[256,165],[191,166],[261,167],[263,168],[259,169],[262,170],[246,156],[247,171],[248,2],[257,172],[258,173],[254,174],[255,175],[245,176],[297,2],[244,24],[298,24],[289,177],[290,177],[287,178],[288,179],[302,179],[301,180],[286,181],[291,177],[292,177],[293,177],[294,177],[295,177],[296,177],[273,2],[272,182],[279,183],[274,2],[275,184],[271,152],[276,184],[278,185],[277,152],[284,186],[282,187],[285,188],[280,189],[283,2],[281,190],[299,191],[300,192]],"exportedModulesMap":[[308,1],[306,2],[252,3],[249,2],[251,4],[253,5],[250,6],[303,7],[305,8],[311,9],[307,1],[309,10],[310,1],[313,11],[312,7],[314,12],[315,13],[317,14],[318,2],[320,15],[321,8],[304,2],[324,16],[327,17],[328,18],[330,19],[332,20],[333,2],[334,21],[335,22],[345,23],[346,2],[319,2],[347,2],[348,2],[349,24],[350,2],[351,19],[353,2],[352,2],[355,25],[356,26],[354,25],[358,27],[357,2],[325,2],[359,2],[316,2],[360,19],[362,2],[363,28],[193,29],[194,29],[196,30],[197,31],[198,32],[199,33],[200,34],[201,35],[202,36],[203,37],[204,38],[205,39],[206,39],[207,40],[208,41],[209,42],[210,43],[195,2],[242,2],[211,44],[212,45],[213,46],[243,47],[214,48],[215,49],[216,50],[217,51],[218,52],[219,53],[220,54],[221,55],[222,56],[223,57],[224,58],[225,59],[227,60],[226,61],[228,62],[229,63],[230,64],[231,65],[232,66],[233,67],[234,68],[235,69],[236,70],[237,71],[238,72],[239,73],[240,74],[241,75],[364,2],[365,2],[366,2],[367,2],[323,2],[322,2],[368,2],[371,76],[372,2],[370,2],[373,2],[326,77],[374,2],[377,78],[375,2],[376,79],[329,2],[378,80],[379,81],[380,2],[381,82],[382,2],[383,2],[336,2],[331,2],[369,2],[361,83],[267,84],[60,85],[126,86],[125,87],[124,88],[65,89],[81,90],[79,91],[80,92],[66,93],[149,94],[51,2],[53,2],[54,95],[55,2],[58,96],[61,2],[78,97],[56,2],[73,98],[59,99],[74,100],[77,101],[72,102],[75,101],[52,2],[57,2],[76,103],[82,104],[70,2],[64,105],[62,106],[71,107],[68,108],[67,108],[63,109],[69,110],[83,111],[145,112],[139,113],[132,114],[131,115],[140,116],[141,101],[133,117],[146,118],[127,119],[128,120],[129,121],[148,122],[130,115],[134,118],[135,123],[142,124],[143,99],[144,123],[136,121],[147,101],[137,125],[138,126],[84,127],[123,128],[87,129],[88,129],[89,129],[90,129],[91,129],[92,129],[93,129],[94,129],[113,129],[95,129],[96,129],[97,129],[98,129],[99,129],[100,129],[120,129],[101,129],[102,129],[103,129],[118,129],[104,129],[119,129],[105,129],[116,129],[117,129],[106,129],[107,129],[108,129],[114,129],[115,129],[109,129],[110,129],[111,129],[112,129],[121,129],[122,129],[86,130],[85,131],[50,2],[337,2],[341,132],[343,133],[342,132],[340,134],[344,135],[339,136],[338,2],[12,2],[11,2],[2,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[3,2],[4,2],[24,2],[21,2],[22,2],[23,2],[25,2],[26,2],[27,2],[5,2],[28,2],[29,2],[30,2],[31,2],[6,2],[32,2],[33,2],[34,2],[35,2],[7,2],[40,2],[36,2],[37,2],[38,2],[39,2],[8,2],[44,2],[41,2],[42,2],[43,2],[45,2],[9,2],[46,2],[47,2],[48,2],[1,2],[10,2],[49,2],[265,2],[184,137],[163,138],[162,139],[164,139],[166,140],[167,139],[165,141],[190,142],[157,143],[156,144],[155,145],[168,2],[185,146],[169,147],[186,148],[188,139],[170,149],[187,147],[171,149],[172,149],[189,147],[173,147],[174,147],[153,150],[154,150],[175,151],[152,152],[177,153],[176,145],[151,150],[161,154],[158,155],[159,2],[160,156],[150,2],[178,2],[179,139],[183,157],[180,156],[181,158],[182,2],[269,159],[270,160],[268,156],[264,161],[266,162],[192,163],[260,164],[256,165],[191,166],[261,167],[263,168],[259,169],[262,170],[246,156],[247,171],[248,2],[257,172],[258,173],[254,174],[255,175],[245,176],[297,2],[244,24],[298,24],[289,177],[290,177],[287,178],[288,179],[302,179],[301,180],[286,181],[291,177],[292,177],[293,177],[294,177],[295,177],[296,177],[273,2],[272,182],[279,183],[274,2],[275,184],[271,152],[276,184],[278,185],[277,152],[284,186],[282,187],[285,188],[280,189],[283,2],[281,190],[299,191],[300,192]],"semanticDiagnosticsPerFile":[308,306,252,249,251,253,250,303,305,311,307,309,310,313,312,314,315,317,318,320,321,304,324,327,328,330,332,333,334,335,345,346,319,347,348,349,350,351,353,352,355,356,354,358,357,325,359,316,360,362,363,193,194,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,195,242,211,212,213,243,214,215,216,217,218,219,220,221,222,223,224,225,227,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,364,365,366,367,323,322,368,371,372,370,373,326,374,377,375,376,329,378,379,380,381,382,383,336,331,369,361,267,60,126,125,124,65,81,79,80,66,149,51,53,54,55,58,61,78,56,73,59,74,77,72,75,52,57,76,82,70,64,62,71,68,67,63,69,83,145,139,132,131,140,141,133,146,127,128,129,148,130,134,135,142,143,144,136,147,137,138,84,123,87,88,89,90,91,92,93,94,113,95,96,97,98,99,100,120,101,102,103,118,104,119,105,116,117,106,107,108,114,115,109,110,111,112,121,122,86,85,50,337,341,343,342,340,344,339,338,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,40,36,37,38,39,8,44,41,42,43,45,9,46,47,48,1,10,49,265,184,163,162,164,166,167,165,190,157,156,155,168,185,169,186,188,170,187,171,172,189,173,174,153,154,175,152,177,176,151,161,158,159,160,150,178,179,183,180,181,182,269,270,268,264,266,192,260,256,191,261,263,259,262,246,247,248,257,258,254,255,245,297,244,298,289,290,287,288,302,301,286,291,292,293,294,295,296,273,272,279,274,275,271,276,278,277,284,282,285,280,283,281,299,300],"affectedFilesPendingEmit":[[308,1],[306,1],[252,1],[249,1],[251,1],[253,1],[250,1],[303,1],[305,1],[311,1],[307,1],[309,1],[310,1],[313,1],[312,1],[314,1],[315,1],[317,1],[318,1],[320,1],[321,1],[304,1],[324,1],[327,1],[328,1],[330,1],[332,1],[333,1],[334,1],[335,1],[345,1],[346,1],[319,1],[347,1],[348,1],[349,1],[350,1],[351,1],[353,1],[352,1],[355,1],[356,1],[354,1],[358,1],[357,1],[325,1],[359,1],[316,1],[360,1],[362,1],[363,1],[193,1],[194,1],[196,1],[197,1],[198,1],[199,1],[200,1],[201,1],[202,1],[203,1],[204,1],[205,1],[206,1],[207,1],[208,1],[209,1],[210,1],[195,1],[242,1],[211,1],[212,1],[213,1],[243,1],[214,1],[215,1],[216,1],[217,1],[218,1],[219,1],[220,1],[221,1],[222,1],[223,1],[224,1],[225,1],[227,1],[226,1],[228,1],[229,1],[230,1],[231,1],[232,1],[233,1],[234,1],[235,1],[236,1],[237,1],[238,1],[239,1],[240,1],[241,1],[364,1],[365,1],[366,1],[367,1],[323,1],[322,1],[368,1],[371,1],[372,1],[370,1],[373,1],[326,1],[374,1],[377,1],[375,1],[376,1],[329,1],[378,1],[379,1],[380,1],[381,1],[382,1],[383,1],[336,1],[331,1],[369,1],[361,1],[267,1],[60,1],[126,1],[125,1],[124,1],[65,1],[81,1],[79,1],[80,1],[66,1],[149,1],[51,1],[53,1],[54,1],[55,1],[58,1],[61,1],[78,1],[56,1],[73,1],[59,1],[74,1],[77,1],[72,1],[75,1],[52,1],[57,1],[76,1],[82,1],[70,1],[64,1],[62,1],[71,1],[68,1],[67,1],[63,1],[69,1],[83,1],[145,1],[139,1],[132,1],[131,1],[140,1],[141,1],[133,1],[146,1],[127,1],[128,1],[129,1],[148,1],[130,1],[134,1],[135,1],[142,1],[143,1],[144,1],[136,1],[147,1],[137,1],[138,1],[84,1],[123,1],[87,1],[88,1],[89,1],[90,1],[91,1],[92,1],[93,1],[94,1],[113,1],[95,1],[96,1],[97,1],[98,1],[99,1],[100,1],[120,1],[101,1],[102,1],[103,1],[118,1],[104,1],[119,1],[105,1],[116,1],[117,1],[106,1],[107,1],[108,1],[114,1],[115,1],[109,1],[110,1],[111,1],[112,1],[121,1],[122,1],[86,1],[85,1],[50,1],[337,1],[341,1],[343,1],[342,1],[340,1],[344,1],[339,1],[338,1],[2,1],[3,1],[4,1],[5,1],[6,1],[7,1],[8,1],[9,1],[10,1],[265,1],[184,1],[163,1],[162,1],[164,1],[166,1],[167,1],[165,1],[190,1],[157,1],[156,1],[155,1],[168,1],[185,1],[169,1],[186,1],[188,1],[170,1],[187,1],[171,1],[172,1],[189,1],[173,1],[174,1],[153,1],[154,1],[175,1],[152,1],[177,1],[176,1],[151,1],[161,1],[158,1],[159,1],[160,1],[150,1],[178,1],[179,1],[183,1],[180,1],[181,1],[182,1],[269,1],[270,1],[268,1],[264,1],[266,1],[192,1],[260,1],[256,1],[191,1],[261,1],[263,1],[259,1],[262,1],[246,1],[247,1],[248,1],[257,1],[258,1],[254,1],[255,1],[245,1],[297,1],[244,1],[298,1],[289,1],[290,1],[287,1],[288,1],[302,1],[301,1],[286,1],[291,1],[292,1],[293,1],[294,1],[295,1],[296,1],[273,1],[272,1],[279,1],[274,1],[275,1],[271,1],[276,1],[278,1],[277,1],[284,1],[282,1],[285,1],[280,1],[283,1],[281,1],[299,1],[300,1]]},"version":"4.6.3"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"global-types.d.ts","sourceRoot":"","sources":["../src/global-types.ts"],"names":[],"mappings":"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"}
|
package/lib/field-builder.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"field-builder.d.ts","sourceRoot":"","sources":["../src/field-builder.ts"],"names":[],"mappings":"AAeA,cAAc,wBAAwB,CAAC"}
|
package/lib/generator.d.ts
DELETED
package/lib/generator.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"generator.d.ts","sourceRoot":"","sources":["../src/generator.ts"],"names":[],"mappings":""}
|
package/lib/global-types.d.ts
DELETED
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
import { FieldKind, FieldNullability, FieldRef, InputFieldMap, InterfaceParam, NormalizeArgs, OutputType, PluginName, SchemaTypes, ShapeFromTypeParam, TypeParam } from '@pothos/core';
|
|
2
|
-
import PrismaNodeRef from './node-ref';
|
|
3
|
-
import { prismaModelKey, PrismaObjectRef } from './object-ref';
|
|
4
|
-
import { PrismaConnectionFieldOptions, PrismaFieldOptions, PrismaModelTypes, PrismaNodeOptions, PrismaObjectTypeOptions } from './types';
|
|
5
|
-
import { PrismaObjectFieldOptions, PrismaPlugin, ShapeFromConnection, ShapeFromSelection } from '.';
|
|
6
|
-
declare global {
|
|
7
|
-
export namespace PothosSchemaTypes {
|
|
8
|
-
interface Plugins<Types extends SchemaTypes> {
|
|
9
|
-
prisma: PrismaPlugin<Types>;
|
|
10
|
-
}
|
|
11
|
-
interface SchemaBuilderOptions<Types extends SchemaTypes> {
|
|
12
|
-
prisma: {
|
|
13
|
-
client: {
|
|
14
|
-
$connect: () => Promise<void>;
|
|
15
|
-
};
|
|
16
|
-
};
|
|
17
|
-
}
|
|
18
|
-
interface UserSchemaTypes {
|
|
19
|
-
PrismaTypes: {};
|
|
20
|
-
}
|
|
21
|
-
interface ExtendDefaultTypes<PartialTypes extends Partial<UserSchemaTypes>> {
|
|
22
|
-
PrismaTypes: undefined extends PartialTypes['PrismaTypes'] ? {} : PartialTypes['PrismaTypes'] & {};
|
|
23
|
-
}
|
|
24
|
-
interface PothosKindToGraphQLType {
|
|
25
|
-
PrismaObject: 'Object';
|
|
26
|
-
}
|
|
27
|
-
interface FieldOptionsByKind<Types extends SchemaTypes, ParentShape, Type extends TypeParam<Types>, Nullable extends FieldNullability<Type>, Args extends InputFieldMap, ResolveShape, ResolveReturnShape> {
|
|
28
|
-
PrismaObject: PrismaObjectFieldOptions<Types, ParentShape, Type, Nullable, Args, ResolveShape, ResolveReturnShape>;
|
|
29
|
-
}
|
|
30
|
-
interface SchemaBuilder<Types extends SchemaTypes> {
|
|
31
|
-
prismaObject: <Name extends keyof Types['PrismaTypes'], Interfaces extends InterfaceParam<Types>[], FindUnique, Model extends PrismaModelTypes & Types['PrismaTypes'][Name], Include = unknown, Select = unknown>(name: Name, options: PrismaObjectTypeOptions<Types, Model, Interfaces, FindUnique, Include, Select, ShapeFromSelection<Model, {
|
|
32
|
-
select: Select;
|
|
33
|
-
include: Include;
|
|
34
|
-
}>>) => PrismaObjectRef<Model, ShapeFromSelection<Model, {
|
|
35
|
-
select: Select;
|
|
36
|
-
include: Include;
|
|
37
|
-
}>>;
|
|
38
|
-
prismaNode: 'relay' extends PluginName ? <Name extends keyof Types['PrismaTypes'], Interfaces extends InterfaceParam<Types>[] = [], Include = unknown, Select = unknown>(name: Name, options: PrismaNodeOptions<Types, Types['PrismaTypes'][Name] & PrismaModelTypes, Interfaces, Include, Select, ShapeFromSelection<PrismaModelTypes & Types['PrismaTypes'][Name], {
|
|
39
|
-
select: Select;
|
|
40
|
-
include: Include;
|
|
41
|
-
}>>) => PrismaNodeRef<Types['PrismaTypes'][Name] & PrismaModelTypes, ShapeFromSelection<PrismaModelTypes & Types['PrismaTypes'][Name], {
|
|
42
|
-
select: Select;
|
|
43
|
-
include: Include;
|
|
44
|
-
}>> : '@pothos/plugin-relay is required to use this method';
|
|
45
|
-
}
|
|
46
|
-
interface RootFieldBuilder<Types extends SchemaTypes, ParentShape, Kind extends FieldKind = FieldKind> {
|
|
47
|
-
prismaField: <Args extends InputFieldMap, TypeParam extends PrismaObjectRef<PrismaModelTypes> | keyof Types['PrismaTypes'] | [keyof Types['PrismaTypes']] | [PrismaObjectRef<PrismaModelTypes>], Nullable extends FieldNullability<Type>, ResolveReturnShape, Type extends TypeParam extends [unknown] ? [ObjectRef<Model['Shape']>] : ObjectRef<Model['Shape']>, Model extends PrismaModelTypes = PrismaModelTypes & (TypeParam extends [keyof Types['PrismaTypes']] ? Types['PrismaTypes'][TypeParam[0]] : TypeParam extends [PrismaObjectRef<PrismaModelTypes>] ? TypeParam[0][typeof prismaModelKey] : TypeParam extends PrismaObjectRef<PrismaModelTypes> ? TypeParam[typeof prismaModelKey] : TypeParam extends keyof Types['PrismaTypes'] ? Types['PrismaTypes'][TypeParam] : never)>(options: PrismaFieldOptions<Types, ParentShape, TypeParam, Model, Type, Args, Nullable, ResolveReturnShape, Kind>) => FieldRef<ShapeFromTypeParam<Types, Type, Nullable>>;
|
|
48
|
-
prismaConnection: 'relay' extends PluginName ? <Type extends PrismaObjectRef<PrismaModelTypes> | keyof Types['PrismaTypes'], Nullable extends boolean, ResolveReturnShape, Args extends InputFieldMap = {}, Model extends PrismaModelTypes = Type extends PrismaObjectRef<infer T> ? T : PrismaModelTypes & Types['PrismaTypes'][Type & keyof Types['PrismaTypes']]>(...args: NormalizeArgs<[
|
|
49
|
-
options: PrismaConnectionFieldOptions<Types, ParentShape, Type, Model, ObjectRef<Model['Shape']>, Nullable, Args, ResolveReturnShape, Kind>,
|
|
50
|
-
connectionOptions?: ConnectionObjectOptions<Types, ObjectRef<Model['Shape']>, false, false, ResolveReturnShape>,
|
|
51
|
-
edgeOptions?: ConnectionEdgeObjectOptions<Types, ObjectRef<Model['Shape']>, false, ResolveReturnShape>
|
|
52
|
-
]>) => FieldRef<ShapeFromConnection<ConnectionShapeHelper<Types, Model['Shape'], Nullable>>> : '@pothos/plugin-relay is required to use this method';
|
|
53
|
-
}
|
|
54
|
-
interface ConnectionFieldOptions<Types extends SchemaTypes, ParentShape, Type extends OutputType<Types>, Nullable extends boolean, EdgeNullability extends FieldNullability<[unknown]>, NodeNullability extends boolean, Args extends InputFieldMap, ResolveReturnShape> {
|
|
55
|
-
}
|
|
56
|
-
interface ConnectionObjectOptions<Types extends SchemaTypes, Type extends OutputType<Types>, EdgeNullability extends FieldNullability<[unknown]>, NodeNullability extends boolean, Resolved> {
|
|
57
|
-
}
|
|
58
|
-
interface ConnectionEdgeObjectOptions<Types extends SchemaTypes, Type extends OutputType<Types>, NodeNullability extends boolean, Resolved> {
|
|
59
|
-
}
|
|
60
|
-
interface DefaultConnectionArguments {
|
|
61
|
-
first?: number | null | undefined;
|
|
62
|
-
last?: number | null | undefined;
|
|
63
|
-
before?: string | null | undefined;
|
|
64
|
-
after?: string | null | undefined;
|
|
65
|
-
}
|
|
66
|
-
interface ConnectionShapeHelper<Types extends SchemaTypes, T, Nullable> {
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
//# sourceMappingURL=global-types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"global-types.d.ts","sourceRoot":"","sources":["../src/global-types.ts"],"names":[],"mappings":"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"}
|