What is an exclamation point in GraphQL?

Technology CommunityCategory: GraphQLWhat is an exclamation point in GraphQL?
VietMX Staff asked 3 years ago

That means that the field is non-nullable. By default, all types in GraphQL are nullable. When non-null is applied to the type of a field, it means that if the server resolves that field to null, the response will fail validation.