which one is best and efficient way to organize query, mutation and subscription class?
- Partial class
- [ExtendObjectType(OperationTypeNames.Query)]
- others?
And what is the difference, what is happening behind the scenes?
In this official docs If we just want to organize the fields of one of our types in different files, we can use partial classes in the Annotation-based approach.
But in workshop ExtendObjectType is used