graphql-engine/server/src-lib/Hasura/GraphQL/Parser
Samir Talwar 8db9b77c77 server: Reorganize quasi-quoted names.
Pretty much all quasi-quoted names in the server code base have ended up in `Hasura.GraphQL.Parser.Constants`. I'm now finding this unpleasant for two reasons:

1. I would like to factor out the parser code into its own Cabal package, and I don't want to have to expose all these names.
2. Most of them really have nothing to do with the parsers.

In order to remedy this, I have:

1. moved the names used by parser code to `Hasura.GraphQL.Parser.DirectiveName`, as they're all related to directives;
2. moved `Hasura.GraphQL.Parser.Constants` to `Hasura.Name`, changing the qualified import name from `G` to `Name`;
3. moved names only used in tests to the appropriate test case;
4. removed unused items from `Hasura.Name`; and
5. grouped related names.

Most of the changes are simply changing `G` to `Name`, which I find much more meaningful.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4777
GitOrigin-RevId: a77aa0aee137b2b5e6faec94495d3a9fbfa1348b
2022-06-23 09:15:31 +00:00
..
Class server: add explicit export lists in OSS server and enforce with warning 2021-11-04 16:09:38 +00:00
Internal Weeding (2/?) 2022-06-09 16:40:49 +00:00
Name server: Reorganize quasi-quoted names. 2022-06-23 09:15:31 +00:00
Schema Decouple Analyse and OpenAPI from remote schema introspection and internal execution details. 2022-03-22 07:37:49 +00:00
Class.hs server: avoid some imports in Hasura.GraphQL.Parser.Class 2022-06-15 11:54:06 +00:00
Collect.hs server, pro: actually reformat the code-base using ormolu 2021-09-23 22:57:37 +00:00
DirectiveName.hs server: Reorganize quasi-quoted names. 2022-06-23 09:15:31 +00:00
Directives.hs server: Reorganize quasi-quoted names. 2022-06-23 09:15:31 +00:00
Monad.hs server: runParse returns QErr 2022-06-16 12:22:30 +00:00
Name.hs server: Reorganize quasi-quoted names. 2022-06-23 09:15:31 +00:00
Schema.hs Weeding (2/?) 2022-06-09 16:40:49 +00:00