├── .vscode └── settings.json ├── LICENSE ├── README.md ├── applyGQL.ts ├── assets ├── example_query_response.png ├── graphErr_logo.svg ├── graphErr_msg_example-1.png ├── graphErr_msg_example.png ├── graphErr_msg_example2-1.png └── graphErr_msg_example2.png ├── errorHandling ├── nativeErrors.ts ├── newErrors.ts └── newErrorsHandler.ts ├── errorLibrary.ts └── typedefs.ts /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/graphErr/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/graphErr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/graphErr/HEAD/README.md -------------------------------------------------------------------------------- /applyGQL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/graphErr/HEAD/applyGQL.ts -------------------------------------------------------------------------------- /assets/example_query_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/graphErr/HEAD/assets/example_query_response.png -------------------------------------------------------------------------------- /assets/graphErr_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/graphErr/HEAD/assets/graphErr_logo.svg -------------------------------------------------------------------------------- /assets/graphErr_msg_example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/graphErr/HEAD/assets/graphErr_msg_example-1.png -------------------------------------------------------------------------------- /assets/graphErr_msg_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/graphErr/HEAD/assets/graphErr_msg_example.png -------------------------------------------------------------------------------- /assets/graphErr_msg_example2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/graphErr/HEAD/assets/graphErr_msg_example2-1.png -------------------------------------------------------------------------------- /assets/graphErr_msg_example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/graphErr/HEAD/assets/graphErr_msg_example2.png -------------------------------------------------------------------------------- /errorHandling/nativeErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/graphErr/HEAD/errorHandling/nativeErrors.ts -------------------------------------------------------------------------------- /errorHandling/newErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/graphErr/HEAD/errorHandling/newErrors.ts -------------------------------------------------------------------------------- /errorHandling/newErrorsHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/graphErr/HEAD/errorHandling/newErrorsHandler.ts -------------------------------------------------------------------------------- /errorLibrary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/graphErr/HEAD/errorLibrary.ts -------------------------------------------------------------------------------- /typedefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/graphErr/HEAD/typedefs.ts --------------------------------------------------------------------------------