mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 04:24:35 +03:00
17 lines
312 B
Haskell
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
|