omar2535/GraphQLer

View on GitHub
graphqler/compiler/parsers/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
"""Parsers:
Parsers are classes used to parse a specific object type out from the introspection query result.
They don't perform any enrichments to the existing objects, only filtering
"""

from .object_list_parser import ObjectListParser
from .query_list_parser import QueryListParser
from .mutation_list_parser import MutationListParser
from .input_object_list_parser import InputObjectListParser
from .enum_list_parser import EnumListParser
from .union_list_parser import UnionListParser
from .interface_list_parser import InterfaceListParser
from .parser import Parser

__all__ = [
    "ObjectListParser",
    "QueryListParser",
    "MutationListParser",
    "InputObjectListParser",
    "EnumListParser",
    "UnionListParser",
    "InterfaceListParser",
    "Parser",
]