mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
a51856c159
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/9092 GitOrigin-RevId: 9c46188f0bc613e553c9e9c267a189efb1de8464
18 lines
340 B
Haskell
18 lines
340 B
Haskell
{-# LANGUAGE TemplateHaskell #-}
|
|
|
|
module Hasura.NativeQuery.Lenses
|
|
( nqiRootFieldName,
|
|
nqiArrayRelationships,
|
|
nqiObjectRelationships,
|
|
nqiCode,
|
|
nqiReturns,
|
|
nqiArguments,
|
|
nqiDescription,
|
|
)
|
|
where
|
|
|
|
import Control.Lens (makeLenses)
|
|
import Hasura.NativeQuery.Cache (NativeQueryInfo (..))
|
|
|
|
makeLenses ''NativeQueryInfo
|