graphql-engine/server
Auke Booij cda117a4a9 Add unless/when related hints
Example:

```
server/src-lib/Hasura/RQL/DDL/Schema/Table.hs:(200,15)-(205,28): Warning: Use when
Found:
  if tnGQL `elem` ns then
      throw400 RemoteSchemaConflicts
        $ "node " <> tnGQL <> " already exists in current graphql schema"
  else
      pure ()
Perhaps:
  when
    (tnGQL `elem` ns)
    (throw400 RemoteSchemaConflicts
       $ "node " <> tnGQL <> " already exists in current graphql schema")
```

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4570
GitOrigin-RevId: 1b04e5e39d20c99643220154c03dae82a025f0f1
2022-05-27 13:34:42 +00:00
..
bench-wrk server, pro: actually reformat the code-base using ormolu 2021-09-23 22:57:37 +00:00
benchmarks ci: hide old benchmark reports for PRs with many comments 2022-02-24 20:09:17 +00:00
documentation server/tests: unify HASURA_BIGQUERY_SERVICE_KEY and HASURA_BIGQUERY_SERVICE_ACCOUNT env vars 2022-03-14 07:50:35 +00:00
packaging ci: use pg_dump from postgres 14 2022-04-18 06:25:02 +00:00
src-dc-api GDC: Integration Tests and Servant Agent 2022-05-11 06:15:27 +00:00
src-exec Remove RQL/Types.hs 2022-04-27 13:58:47 +00:00
src-lib Add unless/when related hints 2022-05-27 13:34:42 +00:00
src-rsr ci: tag release v2.7.0 2022-05-25 10:55:59 +00:00
src-test server: add infrastructure to write runit tests for update parsers 2022-05-26 14:06:24 +00:00
tests-dc-api Data Connector Agent Configuration Schema [GDW-103] 2022-05-05 05:19:46 +00:00
tests-hspec Add unless/when related hints 2022-05-27 13:34:42 +00:00
tests-py server/docs: follow up on the naming convention 2022-05-27 05:56:52 +00:00
.dockerignore update packages (#251) 2018-08-08 13:10:13 +05:30
.gitignore server: Clean up Cabal project files 2022-04-07 07:16:12 +00:00
commit_diff.txt Rewrite GraphQL schema generation and query parsing (close #2801) (#4111) 2020-08-21 12:27:01 -05:00
COMPILING-ON-MACOS.md Improve COMPILING-ON-MACOS.md 2022-05-09 08:32:56 +00:00
CONTRIBUTING.md server/tests: Troubleshooting docs 2022-05-04 08:23:53 +00:00
graphql-engine.cabal server: add infrastructure to write runit tests for update parsers 2022-05-26 14:06:24 +00:00
Makefile ci: misc. cleanup, naming 2022-01-03 06:26:39 +00:00
STYLE.md server, CI: use ormolu as a formatter for Haskell sources 2021-09-23 21:23:21 +00:00
testing-guidelines.md server: testing guidelines 2022-03-08 09:53:27 +00:00