Coverage for src/lexigram/graphql/core/context/__init__.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.15.4, created at 2026-08-25 04:37 +0800

1"""GraphQL context management. 

2 

3This module provides context classes for GraphQL operations, 

4including request/response handling and execution context. 

5""" 

6 

7from __future__ import annotations 

8 

9from lexigram.graphql.core.context._context import GraphQLContext 

10from lexigram.graphql.core.context._factory import ContextFactory 

11from lexigram.graphql.core.context._models import ( 

12 GraphQLErrorPayload, 

13 GraphQLRequest, 

14 GraphQLResponse, 

15) 

16 

17__all__ = [ 

18 "ContextFactory", 

19 "GraphQLErrorPayload", 

20 "GraphQLContext", 

21 "GraphQLRequest", 

22 "GraphQLResponse", 

23]