graphql-engine/server/src-lib/Hasura/GraphQL/Execute/Subscription
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
..
Poll Add unless/when related hints 2022-05-27 13:34:42 +00:00
Options.hs server: streaming subscriptions execution (Incremental PR - 2) 2022-04-07 14:43:01 +00:00
Plan.hs Remove RQL/Types.hs 2022-04-27 13:58:47 +00:00
Poll.hs server: streaming subscriptions execution (Incremental PR - 2) 2022-04-07 14:43:01 +00:00
State.hs server: streaming subscriptions schema generation and tests (incremental PR - 3) 2022-04-22 19:54:11 +00:00
TMap.hs server: refactor the term "live query" to "subscription" 2022-03-21 10:40:49 +00:00
Types.hs server: streaming subscriptions execution (Incremental PR - 2) 2022-04-07 14:43:01 +00:00