Source code for py_gql._graphql

# -*- coding: utf-8 -*-

from typing import Any, Callable, Mapping, Optional, Sequence, Type, Union, cast

from .exc import ExecutionError, GraphQLSyntaxError, VariablesCoercionError
from .execution import (
    BlockingExecutor,
    Executor,
    GraphQLResult,
    Instrumentation,
    execute,
)
from .execution.runtime import AsyncIORuntime, BlockingRuntime, Runtime
from .lang import parse
from .lang.ast import Document
from .schema import Schema
from .validation import Validator, validate_ast


[docs]def process_graphql_query( schema: Schema, document: Union[str, Document], *, variables: Optional[Mapping[str, Any]] = None, operation_name: Optional[str] = None, root: Any = None, context: Any = None, validators: Optional[Sequence[Validator]] = None, middlewares: Optional[Sequence[Callable[..., Any]]] = None, instrumentation: Optional[Instrumentation] = None, disable_introspection: bool = False, runtime: Optional[Runtime] = None, executor_cls: Type[Executor] = Executor ) -> Any: """ Execute a GraphQL query. This is the main GraphQL entrypoint encapsulating query processing from start to finish including parsing, validation, variable coercion and execution. Warning: The returned value will depend on the ``runtime`` argument. Custom implementations usually return a type wrapping the :class:`~py_gql.GraphQLResult` object such as `Awaitable[...]`. Args: schema: Schema to execute the query against. document: The query document. variables: Raw, JSON decoded variables parsed from the request. operation_name: Operation to execute If specified, the operation with the given name will be executed. If not, this executes the single operation without disambiguation. root: Root resolution value passed to the top-level resolver. context: Custom application-specific execution context. Use this to pass in anything your resolvers require like database connection, user information, etc. Limits on the type(s) used here will depend on your own resolver and the runtime implementations used. Most thread safe data-structures should work with built in runtimes. validators: Custom validators. Setting this will replace the defaults so if you just want to add some rules, append to :obj:`py_gql.validation.SPECIFIED_RULES`. middlewares: List of middleware functions. Middlewares are used to wrap the resolution of **all** fields with common logic, they are good candidates for logging, authentication, and execution guards. instrumentation: Instrumentation instance. Use :class:`~py_gql.execution.MultiInstrumentation` to compose multiple instances together. disable_introspection: Use this to prevent schema introspection. This can be useful when you want to hide your full schema while keeping your API available. Note that this deviates from the GraphQL specification and will likely break some clients (such as GraphiQL) so use this with caution. runtime: Runtime against which to execute field resolvers (defaults to `~py_gql.execution.runtime.BlockingRuntime()`). executor_cls: Executor class to use. The executor class defines the implementation of the GraphQL resolution algorithm. This **must** be a subclass of `py_gql.execution.Executor`. Returns: Execution result. """ schema.validate() instrumentation = instrumentation or Instrumentation() runtime = runtime or BlockingRuntime() instrumentation.on_query_start() def _abort(*args, **kwargs): # Make sure the value is wrapped similarly to the execution result to # make it easier for consumers. return cast(Runtime, runtime).ensure_wrapped( _on_end(GraphQLResult(*args, **kwargs)) ) def _on_end(result: GraphQLResult) -> GraphQLResult: cast(Instrumentation, instrumentation).on_query_end() return result if isinstance(document, str): instrumentation.on_parsing_start() try: ast = parse(document) except GraphQLSyntaxError as err: return _abort(errors=[err]) finally: instrumentation.on_parsing_end() else: ast = document instrumentation.on_validation_start() validation_result = validate_ast(schema, ast, validators=validators) instrumentation.on_validation_end() if not validation_result: return _abort(errors=validation_result.errors) try: return runtime.map_value( execute( schema, ast, operation_name=operation_name, variables=variables, initial_value=root, context_value=context, instrumentation=instrumentation, middlewares=middlewares, disable_introspection=disable_introspection, executor_cls=executor_cls, runtime=runtime, ), _on_end, ) except VariablesCoercionError as err: return _abort(data=None, errors=err.errors) except ExecutionError as err: return _abort(data=None, errors=[err])
[docs]async def graphql( schema: Schema, document: Union[str, Document], *, variables: Optional[Mapping[str, Any]] = None, operation_name: Optional[str] = None, root: Any = None, context: Any = None, validators: Optional[Sequence[Validator]] = None, middlewares: Optional[Sequence[Callable[..., Any]]] = None, instrumentation: Optional[Instrumentation] = None ) -> GraphQLResult: """ Execute a GraphQL query on the AsyncIO runtime. This is a wrapper around :func:`~py_gql.process_graphql_query` enforcing usage of :class:`~py_gql.execution.runtime.AsyncIORuntime`. Warning: Blocking (non async) resolvers will block the current thread. """ return cast( GraphQLResult, await process_graphql_query( schema, document, variables=variables, operation_name=operation_name, root=root, validators=validators, context=context, instrumentation=instrumentation, middlewares=middlewares, runtime=AsyncIORuntime(), ), )
[docs]def graphql_blocking( schema: Schema, document: Union[str, Document], *, variables: Optional[Mapping[str, Any]] = None, operation_name: Optional[str] = None, root: Any = None, context: Any = None, validators: Optional[Sequence[Validator]] = None, middlewares: Optional[Sequence[Callable[..., Any]]] = None, instrumentation: Optional[Instrumentation] = None ) -> GraphQLResult: """ Execute a GraphQL query in the current thread. Wrapper around :func:`process_graphql_query` enforcing usage of blocking resolvers. This uses an optimized :class:`~py_gql.execution.Executor` subclass. """ return cast( GraphQLResult, process_graphql_query( schema, document, variables=variables, operation_name=operation_name, root=root, validators=validators, context=context, instrumentation=instrumentation, middlewares=middlewares, executor_cls=BlockingExecutor, ), )