Vladimir Razuvaev

Results 13 issues of Vladimir Razuvaev

Hey 👋 Another cool project of yours 👍 The README mentions that the library is WASM-ready. But is there any example of how to use it from Javascript?

If I add the following test case to [clone() test](https://github.com/graphql-compose/graphql-compose/blob/ffeeab6de8178c7fd34ee96bce308c67caba7ae2/src/__tests__/ObjectTypeComposer-test.js#L825-L831) it will fail: ```js it('cloned type should have identical description', () => { const cloned = tc.clone('NewObject'); expect(cloned.getType().description).toEqual(tc.getType().description); }); ```...

Hey @nodkz 👋 First of all, thank you for this library. It makes our life so much easier in Gatsby. We are in the process of upgrading to the latest...

We need some examples in the documentation on how to implement custom directives both for query resolution and schema definitions.

docs

The main purpose of this feature is to allow adding extensions which were previously set in context by some resolver (workaround for #193)

enhancement

Is there a way to set delay for touch events, so that dragging started after N ms of touching (to differentiate from tapping and scrolling)?

At the moment, any custom scalar type is replaced with the most generic `JSON` type. We should allow you to define a map of `remoteScalarType => gatsbyScalarType` in the config....

GraphQL schema doesn't convey full information about data interdependencies and relations. So it is possible to have some pieces of data stale with delta sync. Quick example: ```graphql type Category...

Say we have the following custom fragment: ```graphql fragment Example on MyInterface { __typename someField } ``` The `compileNodeQueries` will transform it to something like this for node query: ```graphql...

We should display a warning in the default `execute` implementation when there are errors along with data: ```json { "errors": [ { "message": "Some non-critical error." } ], "data": {...