Coverage for graphqler / compiler / parsers / __init__.py: 100%

9 statements  

« prev     ^ index     » next       coverage.py v7.13.4, created at 2026-03-18 23:20 -0400

1"""Parsers: 

2Parsers are classes used to parse a specific object type out from the introspection query result. 

3They don't perform any enrichments to the existing objects, only filtering 

4""" 

5 

6from .object_list_parser import ObjectListParser 

7from .query_list_parser import QueryListParser 

8from .mutation_list_parser import MutationListParser 

9from .input_object_list_parser import InputObjectListParser 

10from .enum_list_parser import EnumListParser 

11from .union_list_parser import UnionListParser 

12from .interface_list_parser import InterfaceListParser 

13from .parser import Parser 

14 

15__all__ = [ 

16 "ObjectListParser", 

17 "QueryListParser", 

18 "MutationListParser", 

19 "InputObjectListParser", 

20 "EnumListParser", 

21 "UnionListParser", 

22 "InterfaceListParser", 

23 "Parser", 

24]