graphql-framework-experiment icon indicating copy to clipboard operation
graphql-framework-experiment copied to clipboard

Code-First Type-Safe GraphQL Framework

Results 106 graphql-framework-experiment issues
Sort by recently updated
recently updated
newest added

The latest 0.26.1 throws back errors on build when subscriptionType is used. Sample subscription snippet is below. ```typescript import { schema } from 'nexus' import { PubSub } from 'graphql-subscriptions'...

type/bug

#### What Got this Error: is not under 'rootDir'. Since 0.26 need to be under the api root dir..? I think this restriction is to hard. #### Why Cause i...

Sorry if it shouldn't be in this category. #### Nexus Report ` ■ nexus:server:graphql BadRequestError: Invalid body: request entity too large.` #### Description I am using graphql-upload and this error...

type/bug

when I have auto generated DateTime inputType(ExpenseCreateInput!) I am getting the error saying 'Could not find input type name: DateTime' during Prisma insert. for example mutation like t.crud.createOneExpense(). Full stack...

The `example.mdx` link is broken in https://github.com/graphql-nexus/nexus/blob/master/website/README.md#mdx-blocks . I can open a PR to fix it, if someone is willing to point me to the correct url.

type/chore

## Bug description So I'm attempting to assign a generated type (connect) to a variable of the same type but receive the following error message in VSCode (1.47.2): ``` Type...

type/bug

#### Nexus Report ```json { "node": "v12.18.2", "os": { "platform": "win32", "release": "10.0.18363" }, "nexus": "0.26.0-next.9", "plugins": [ "nexus-plugin-prisma" ], "otherDependencies": { "bcryptjs": "2.4.3", "cors": "^2.8.5", "dotenv": "^8.2.0", "firebase-admin": "^9.0.0",...

type/bug

I have code ``` import {server} from 'nexus' const app = server.express const p = require('../package.json') app.get('/version', async (req, res) => { res.send({version: p.version}) }) ``` And tests ``` import...

type/docs
scope/server

#### Perceived Problem - Cold start time is over half a second - Combined with serverless platform, TTFB latency will easily exceed 1s in many cases - And this is...

type/feat
scope/builder
effort/hard
scope/deployment

#### What - Define a server middleware API - Do not re-export another server middleware system - Do be open to adaptors that permit bridging with middleware from other frameworks...

type/design
scope/server