Jani Tiainen

Results 15 comments of Jani Tiainen

Unfortunately it's been so long that I did it so I don't remember details. But libavoid code is really clean so I think I just compiled it with emscripten without...

> Hi @jtiai , Seems the https://unpkg.com/[email protected]/graphql.js file has not exported the `GraphQLError` module. In your case, you should use to instead. > > ``` > import { GraphQLError }...

After doing some work with imports I hit an another error: ``` error: Uncaught ReferenceError: process is not defined process.env.NODE_ENV === 'production' ^ at https://esm.sh/[email protected]/jsutils/instanceOf.mjs:13:3 ``` And that module is...

This is MVP which triggers the error: ```typescript import { GraphQLScalarType, ValueNode } from "https://esm.sh/[email protected]/type/index.mjs"; import { Kind } from "https://esm.sh/[email protected]/language/kinds.mjs"; const dateTimeScalar = new GraphQLScalarType({ name: "DateTime", description: "Date...

I guess that worked but now I get schema errors. For some reasons this is only thing that so far works: ```typescript import { GraphQLScalarType, Kind, ValueNode } from "npm:graphql@^16.6.0";...