GraphQL - Schema Definition Language (SDL)
Consider this GraphQL schema snippet:
Which change fixes the error when a query returns null for
type Product {
id: ID!
name: String!
description: String
}Which change fixes the error when a query returns null for
name?