mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 13:02:11 +03:00
6178a1fd82
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8989 GitOrigin-RevId: f0f6e75732408f21ebe5fdc5af3f680cd96ae789
15 lines
268 B
Haskell
15 lines
268 B
Haskell
{-# LANGUAGE TemplateHaskell #-}
|
|
|
|
module Hasura.LogicalModel.Lenses
|
|
( lmiName,
|
|
lmiPermissions,
|
|
lmiDescription,
|
|
lmiFields,
|
|
)
|
|
where
|
|
|
|
import Control.Lens (makeLenses)
|
|
import Hasura.LogicalModel.Cache (LogicalModelInfo (..))
|
|
|
|
makeLenses ''LogicalModelInfo
|