GraphQL tip: Only make fields required if they are present for all users

GraphQL tip: Only make fields required if they are present for all users

In GraphQL it’s possible to mark a field as required with the ! . For example, a User always have a Project according to this schema: type User { name …

 

Read More