graphql-engine/server/src-lib/Hasura/NativeQuery/Lenses.hs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
312 B
Haskell
Raw Normal View History

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