GraphQL - Schema Definition Language (SDL)
Consider this GraphQL object type:
What will this query return?
type Product {
id: ID
name: String
price: Float
}What will this query return?
{ product { id name } }