Client schema directives support
See original GitHub issueHi,
When validating schema I’m getting errors about @connection
directive:
- Unknown directive connection.
Is there a way to allow usage of custom directives in documents?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Directives - Apollo GraphQL Docs
A directive decorates part of a GraphQL schema or operation with additional configuration. Tools like Apollo Server (and Apollo Client) can read a...
Read more >Schema Directives – GraphQL Tools
Using and implementing custom directives to transform schema types, fields, and arguments.
Read more >Using schema directives - Apollo Server - Apollo GraphQL Docs
To use a custom schema directive, pass the implemented class to Apollo Server via the schemaDirectives argument, which is an object that maps...
Read more >How to use GraphQL Directives efficiently - Level Up Coding
The Schema Directives are defined in the schema itself and run while building it, and they are used by the schema designer. ·...
Read more >Categorizing GraphQL Directives into Schema or Query Type
The directives in this section are those that make sense both within the context of the server, to help configure the schema, and...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
#505 should add Apollo specific directives. In order to use custom directives, you can just include their definitions in the GraphQL Schema.
Also there is @client for local state management