graphql-engine/sample.hie.yaml
Samir Talwar aa18f65217 server: Move the schema parsers to their own library.
It's about time.

To do this I had to check a few more boxes.

* I copied the flags from `graphql-engine.cabal` to the libraries in `server/lib`.
* I moved `Cacheable` instances of schema parser types beside the typeclass declaration.
* I removed imports of `Hasura.Prelude` from the tests, and rewrote them accordingly.
* I copied the `TestMonad` parse monad into `server/src-test/Hasura/GraphQL/Schema/RemoteTest.hs`, which was using it. I think this could be done with the real thing, but I tried replacing it with constraints and it messed with my head somewhat.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5311
GitOrigin-RevId: ebebcc50a16f2d517b7f730fe72410827ca3e86c
2022-08-05 13:53:39 +00:00

36 lines
1.2 KiB
YAML

cradle:
cabal:
- path: "./server/src-dc-api"
component: "graphql-engine:lib:dc-api"
- path: "./server/tests-dc-api"
component: "graphql-engine:test:tests-dc-api"
- path: "./server/src-lib"
component: "graphql-engine:lib:graphql-engine"
- path: "./server/src-exec"
component: "graphql-engine:exe:graphql-engine"
- path: "./server/src-test"
component: "graphql-engine:test:graphql-engine-tests"
- path: "./server/src-bench-cache"
component: "graphql-engine:bench:cache"
- path: "server/tests-hspec"
component: "graphql-engine:test:tests-hspec"
- path: "server/src-emit-metadata-openapi"
component: "graphql-engine:exe:emit-metadata-openapi"
- path: "server/lib/aeson-ordered/src"
component: "aeson-ordered:lib:aeson-ordered"
- path: "server/lib/error-message/src"
component: "hasura-error-message:lib:hasura-error-message"
- path: "server/lib/error-message/test"
component: "hasura-error-message:test:tests"
- path: "server/lib/schema-parsers/src"
component: "hasura-schema-parsers:lib:hasura-schema-parsers"
- path: "server/lib/schema-parsers/test"
component: "hasura-schema-parsers:test:tests"