graphql-engine/server/src-lib/Hasura/Backends/MySQL/Instances
Jesse Hallett f4fa960ec6 server: safely signal backend support for event triggers
Hooks up event trigger codecs from #7237. This required fixing a problem where some backend types implemented `defaultTriggerOnReplication` with `error` which caused the server to crash when evaluating those for default values in codecs. The changes here add a type family to `Backend` called `XEventTriggers` that signals backend support for event triggers, and changes the type of `defaultTriggerOnReplication` to from `TriggerOnReplication` to `Maybe (XEventTriggers b, TriggerOnReplication)` so that it can only be implemented with a `Just` value if `XEventTriggers b` is inhabited. This emulates some existing type families in `Backend`. (Thanks to @daniel-chambers for this suggestion!)

I used the implementation of `defaultTriggerOnReplication` as a signal for event triggers support to prune the Metadata API so that event trigger fields will not appear in the OpenAPI spec for backend types that do not support event triggers. The codec version of the API will also not emit or accept those fields for those backend types. I think I could use `Typeable` to test whether `XEventTriggers` is `Void` instead of testing whether `defaultTriggerOnReplication` is `Nothing`. But the codec implementation will crash anyway if `defaultTriggerOnReplication` is `Nothing`.

I checked to make sure that graphql-engine-pro still compiles.

Ticket: https://hasurahq.atlassian.net/browse/GDC-521

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7295
GitOrigin-RevId: 2b2dd44291513266107ca25cf330319bf53a8b66
2022-12-21 17:15:31 +00:00
..
API.hs server: add explicit export lists in OSS server and enforce with warning 2021-11-04 16:09:38 +00:00
Execute.hs Kriti Transform of the DataConnectors Configuration [GDW-144] 2022-07-19 01:52:50 +00:00
Metadata.hs Source catalog migrations minor enhancements 2022-11-01 22:42:40 +00:00
Schema.hs server: reduce schema contexts to the bare minimum 2022-11-17 10:35:54 +00:00
SchemaCache.hs Define IR types for AggregationPredicates. 2022-08-19 15:41:47 +00:00
Transport.hs Remove RQL/Types.hs 2022-04-27 13:58:47 +00:00
Types.hs server: safely signal backend support for event triggers 2022-12-21 17:15:31 +00:00