graphql-engine/server/src-lib/Hasura/NativeQuery/Lenses.hs
Daniel Harvey 6178a1fd82 chore(server): split Logical Model lenses into files
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8989
GitOrigin-RevId: f0f6e75732408f21ebe5fdc5af3f680cd96ae789
2023-04-28 18:47:38 +00:00

17 lines
312 B
Haskell

{-# LANGUAGE TemplateHaskell #-}
module Hasura.NativeQuery.Lenses
( nqiRootFieldName,
nqiArrayRelationships,
nqiCode,
nqiReturns,
nqiArguments,
nqiDescription,
)
where
import Control.Lens (makeLenses)
import Hasura.NativeQuery.Cache (NativeQueryInfo (..))
makeLenses ''NativeQueryInfo