mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
17 lines
571 B
Markdown
17 lines
571 B
Markdown
|
# Hasura GraphQL Engine Metadata API Types
|
||
|
|
||
|
This package contains TypeScript types for working with the Hasura GraphQL
|
||
|
Engine Metadata API. That is the API that is used to configure the GraphQL
|
||
|
Engine.
|
||
|
|
||
|
Currently this library exports types used for exporting and importing GraphQL
|
||
|
Engine metadata in its entirety. To get the root type for exported metadata,
|
||
|
import the `MetadataV3` type.
|
||
|
|
||
|
```ts
|
||
|
import type { MetadataV3 } from '@hasura/metadata-api'
|
||
|
```
|
||
|
|
||
|
The other types provided by the library are aliases for types of properties that
|
||
|
appear within the metadata export.
|