mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 04:24:35 +03:00
6178a1fd82
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8989 GitOrigin-RevId: f0f6e75732408f21ebe5fdc5af3f680cd96ae789
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
|