graphql-directive icon indicating copy to clipboard operation
graphql-directive copied to clipboard

Use custom directives in your GraphQL schema and queries 🎩

Results 5 graphql-directive issues
Sort by recently updated
recently updated
newest added

Hi, just saw you PR to fix Apollos InMemoryCache to support custom directives, which landed in the master is part of the actual code base. I am using ApolloClient and...

Hi, it throws me the following error when trying to add directive resolve functions to the schema. I have checked with forEachField and astNode is always undefined, is it my...

Hi, is it possible to add directives for types/fields using GraphQLObjectType instead of SDL? Is it supported? I could only see examples using SDL. Thanks.

I'm trying to implement a live directive, which keeps the caller of the query up-to-date. This is my current code, which does just `resolve()` with the directive. ```js const typeDefs...