GraphQL - Schema Definition Language (SDL)
Given this GraphQL type definition:
Which fields are required when creating a new Product?
type Product {
id: ID!
name: String
price: Float!
}Which fields are required when creating a new Product?
