Arda TANRIKULU

Results 139 issues of Arda TANRIKULU

Support computed fields resolved via a root field returning an interface When a computed field returning an object, and that field is resolved via an interface, the computed field will...

If there is a subschema with some selection set, and another with some other selection set. After the calculation of delegation stage, if one subschema can cover the other selection...

``` grpcurl -reflect-header grpc-service:proto.MyGrpcService -d '{"name": "mike"}' localhost:9090 proto.MyGrpcService/hello ``` Is there any way to define `reflect-header` using this library? Related https://github.com/Urigo/graphql-mesh/issues/2105

This PR introduces the following changes; - Now `cache` parameter accepts a factory function that takes the context and returns the cache implementation - Now the cache implementation does not...

When encapsulate transform is used, the root fields become a nested field of encapsulated root types; ```graphql type Query { foo: FooQuery } type FooQuery { foo(id: ID!): Foo }...

This PR adds support for [BigInt](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) values to `astFromValue`. It coerces whenever possible instead of failing. This will also allow custom scalars like https://the-guild.dev/graphql/scalars/docs/scalars/big-int to get a `BigInt` as a...

When you have a scalar with a `serialize` function that returns an object, it is not possible to convert it to AST. So it doesn't allow you to print a...

Fixes https://github.com/graphql/graphql-js/issues/4085 Closes https://github.com/graphql/graphql-js/pull/4086 This PR introduces a new function called `astFromValueUntyped` that creates an AST without a type. This function is needed because if a custom scalar returns an...

Related https://github.com/graphql/graphql-js/issues/4085