import jsonfrom typing import Dict, Anyclass GraphQLResponseParser: def __init__(self, file_path: str): """ Parameters: file_path (str): txt 파일 경로 """ self.file_path = file_path self.schema_data = self._load_file() def _load_file(self) -> Dict[str, Any]: """txt 파일을 로드하고 JSON으로 파싱합니다.""" with open(self.file_path, 'r', encoding='utf-8')..