-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow custom directives #41
Comments
Can you explain more concretely what custom directives you wish to provide and how you would imagine implementing them? I'm curious because we're actually considering a change that removes directives from the schema completely. |
It seemed like a gap in the implementation, and I'm interested in contributing. I don't have any concrete examples at this time. |
Oh ok, I understand. To be clear, directives are not designed to be extended by users of graphql, but by future versions of graphql core itself. That's the reason we're considering removing them from schema. It's too confusing as schema is something a user of graphql defines and produces, and directives being accessible from the same portion of code is the thing that doesn't look like the others. |
I think the grammar is confusing for people reading graphql for the first time, if you replace the |
I'm not sure I agree chained calls is a well known pattern unless you've used Facebook's pre-spec graphql. Chained calls were replaced by field arguments. Directives is an entirely new concept |
Closing this now as we've determined that user-supplied custom directives is a non-goal for graphql-js at this time. |
Check this extention for custom directive: |
@leebyron Hmm. This doesn't sit well with me. Directives are a great way for graphql server administrators to provide custom functionality to their graphql users. From the spec:
This seems to be that so long as a directive can be found on the server the users of graphql should be fully capable of using said directive. Hence, there ought to be a way for graphql server administrators to add/register directives. From my review of the source it appears that when instantiating a For those looking for similar functionality and not an outdated repo, try giving https://github.com/smooth-code/graphql-directive a look. Just don't expect this to work forever. |
TLDRUse this package to add custom directive support: https://github.com/smooth-code/graphql-directive |
Well, I use graphql-faker to define a schema with fake data. Frontend developers feel really great with it, cause it consists of easy-to-run-graphql-server and there is no need in heavy backend, databases, etc. $ graphql-faker --open ./schema.graphql To fake data, schema must contain some additional directives: type Query {
hello: String! @fake(type: firstName)
} As a GraphQL API developer, I write the following code: import { graphql, buildSchema } from 'graphql'
const schema = buildSchema(fs.readFileSync('./schema.graphql', 'utf8'))
app.use('/graphql', graphqlHTTP({ schema, rootValue })) And I want the graphql parser just to ignore those As a bypass I wrote a regex, though it's not a reliable way (context-grammar, braces, all that stuff), resolving custom directives after grammar parsing is better. |
@xamgore Yes, it's a valid issue but it's not related to this issue. |
GraphQLSchema does not expose the use of custom directives. Based on the spec, the
@skip
and@include
directives are required and appears to allow for custom directives.The
GraphQLSchemaConfig
type doesn't allow a list of directives, and neither does theGraphQLSchema
allow directives through the constructor, but it is possible to set the_directives
prop on theGraphQLSchema
type, so it's technically possible but not exposed.The text was updated successfully, but these errors were encountered: