build_schema
Compiles decorated query, mutation, and subscription roots into a Schema. It also
accepts additional reachable types, a type registry, and SchemaConfig.
Schema(query=...) is a convenient constructor that performs the same compilation
when passed decorated Python classes.
execute
Source, or parsed DocumentNode. Execution parses when
needed, selects an operation, validates, coerces variables, resolves fields, completes
values, and returns ExecutionResult.
validate and parse
Use parse(source) when an application benefits from retaining the GraphQL AST.
Use validate(schema, document) to inspect validation errors without executing.