Geoffrey Thierry
Results
2
comments of
Geoffrey Thierry
Personally I use graphql types to handle security. For instance, you can create a type `PublicUser` with public data and a type `FullUser` with all data. This way your field...
Actually the type will be set by your union type, in the method `resolveType()` which takes as argument the value you will resolved in your field (a user object in...