graphql-relay-js icon indicating copy to clipboard operation
graphql-relay-js copied to clipboard

A library to help construct a graphql-js server supporting react-relay.

Results 29 graphql-relay-js issues
Sort by recently updated
recently updated
newest added

Currently links to examples points to an out of date file with the JavaScript extension. This PR replaces these with the actual TypeScript extension in order to make them reachable.

To support federation v2 by Apollo, if multiple subgraphs use PageInfo, the fields need to be marked as shareable otherwise the graph will fail to compose: https://www.apollographql.com/docs/federation/federation-2/moving-to-federation-2#mark-all-value-types-as-shareable How might this...

I would like to reference this type from my own custom implementations of a connection. If this library would export this GraphQL type, I would be able to use it...

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

``` /node_modules/graphql-relay/connection/connection.js:112 ┃ ...(0, _graphql.resolveObjMapThunk)( ┃ ^ ┃ ┃ TypeError: (0 , _graphql.resolveObjMapThunk) is not a function ``` Once downgraded to `0.9.0` the error is removed. This started happening when...

Could we merge the features of [taion/graphql-relay-subscription](https://github.com/taion/graphql-relay-subscription) into this package? In my opinion, would be good to unify the features into this package.

I was wondering if anyone has used this package successfully with Nest.js? Thanks!

Is there a way that I can return a union type on `outputFields`? I want to do something like it: ```graphql mutation userRegister($input: UserRegisterInput!) { userRegister(input: $input) { ... on...