Jorge

Results 10 comments of Jorge

I'm experiencing a similar issue. `yarn install` generates a lockfile which then I push and when my CI system runs `yarn install --immutable` it fails with `The lockfile would have...

I see where you are coming from. But I do not have a String, though. I could create it to then parse it, but that feels like an ugly hack....

For those interested, I forked the project at https://github.com/BlueSialia/express-graphql. The company I work at uses it for a project, so I will be maintaining it for a long while. Be...

For those interested, I forked the project at https://github.com/BlueSialia/express-graphql to solve this and some other issues I was having. The company I work at uses it for a project, so...

For those interested, I also forked the project at https://github.com/BlueSialia/express-graphql. The company I work at uses it for a project, so I will be maintaining it for a long while....

@dotMortis Both of your examples produce the same error for me. I'm using v4.12.9 and I cannot get a nested property to be nullable no matter what I do. Though...

What's the status of this? Is there a PR or a branch about file uploads?

Is this still a pending feature?

I cannot figure out how you are managing to send files like that. I keep geting errors about the map fields of https://github.com/jaydenseric/graphql-multipart-request-spec being defined incorrectly. Or the variable not...

As of now, I have this monstrosity: ``` const isExtractableFile = (value: any) => { return value instanceof Buffer; } const scalars = ZeusScalars({ JSONObject: { encode: (e: unknown) =>...