mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 21:41:44 +03:00
2e9b0ad3f2
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8993 GitOrigin-RevId: dda6b7b915236c4f013b28ce98aa34c48e9a53db
19 lines
327 B
Haskell
19 lines
327 B
Haskell
{-# LANGUAGE TemplateHaskell #-}
|
|
|
|
module Hasura.RQL.DDL.Action.Lenses
|
|
( caName,
|
|
caDefinition,
|
|
caComment,
|
|
uaName,
|
|
uaDefinition,
|
|
uaComment,
|
|
)
|
|
where
|
|
|
|
import Control.Lens (makeLenses)
|
|
import Hasura.RQL.DDL.Action (CreateAction (..), UpdateAction)
|
|
|
|
$(makeLenses ''CreateAction)
|
|
|
|
$(makeLenses ''UpdateAction)
|