Fields are the individual properties of a GraphQL type.
Each field has a name and a return type.
type User {
id: ID!
name: String!
}
id and name are fieldsFields can return:
Example:
type User {
id: ID!
name: String!
posts: [Post]
}
Fields can accept arguments (like parameters in functions).