mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 20:41:49 +03:00
2aca76f0cc
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/9037 GitOrigin-RevId: c47ed4bd2fb7102ceed0159c4717d1555080cfd5
17 lines
307 B
Haskell
17 lines
307 B
Haskell
{-# LANGUAGE TemplateHaskell #-}
|
|
|
|
module Hasura.NativeQuery.Lenses
|
|
( nqiRootFieldName,
|
|
nqiRelationships,
|
|
nqiCode,
|
|
nqiReturns,
|
|
nqiArguments,
|
|
nqiDescription,
|
|
)
|
|
where
|
|
|
|
import Control.Lens (makeLenses)
|
|
import Hasura.NativeQuery.Cache (NativeQueryInfo (..))
|
|
|
|
makeLenses ''NativeQueryInfo
|