Benedikt Franke
Benedikt Franke
Closing due to lack of feedback.
Closing due to lack of feedback.
Is there any difference between using `->{relation}()->count()` and the magic `_count` property?
I can confirm this works. Thanks @IvanGoncharov
How about we add a config option: ```ts printDirectives: (definition: GraphQLType|GraphQLField|GraphQLEnumValue|GraphQLInputField|GraphQLArgument) => string ``` Whenever a definition that can hold directives is encountered, the given function would be called with...
In order to be consistent and avoid ambiguity, I would always mark descriptions coming from an implemented interface explicitly as such. Here is a quick & dirty visual mockup I...
Hey @IvanGoncharov, thanks for the feedback on the PR. It does surface a very interesting point, that is how we can bridge the gap for features such as `@deprecated`, `@specifiedBy`...
> If you look into source code they are already printed with hand-written code for each directive. You are right, I completely missed that. Since `extensions` is completely custom, I...
> It should be tied to directive objects, otherwise it's not modular. That implies we tie directive objects to definitions in a unified manner. That seems to contradict the philosophy...
I removed everything that was tied directly to the SDL source. The implementation is now fully agnostic to what will result in the printed directives in the final schema. I...