graphql-engine/server/src-lib/Hasura/Backends/DataConnector/IR/Table.hs

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

26 lines
692 B
Haskell
Raw Normal View History

module Hasura.Backends.DataConnector.IR.Table
( Name,
)
where
--------------------------------------------------------------------------------
import Hasura.Backends.DataConnector.IR.Name qualified as IR.N
--------------------------------------------------------------------------------
-- | An alias for 'Name.Table' 'Name.Name's.
--
-- This alias is defined in its own module primarily for the convenience of
-- importing it qualified.
--
-- For example:
-- @
-- import Data.Coerce (coerce)
-- import Hasura.Experimental.IR.Table qualified as Table (Name)
--
-- example :: Table.Name
-- example = coerce @Text @Table.Name "table_name"
-- @
type Name = IR.N.Name 'IR.N.Table