You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the problem
There are various directives that aren't defined within the GQL schema. They do still get parsed, but the directive definition should exist on the GQL schema.
We can see all the directives correctly defined in request/graphql/schema/types.go with their various gql.NewDirective call but they don't get registered into the defaultDirectivesType() function
Describe the problem
There are various directives that aren't defined within the GQL schema. They do still get parsed, but the directive definition should exist on the GQL schema.
Specific directives:
We can see all the directives correctly defined in
request/graphql/schema/types.go
with their variousgql.NewDirective
call but they don't get registered into thedefaultDirectivesType()
functiondefradb/request/graphql/schema/manager.go
Line 112 in c117d84
Additionally, the
@crdt
directive isn't defined at all, it only exists within the AST parsing code of fieldsFromAST functiondefradb/request/graphql/schema/collection.go
Line 370 in c117d84
The text was updated successfully, but these errors were encountered: