Skip to content

Commit

Permalink
Fix broken refs
Browse files Browse the repository at this point in the history
  • Loading branch information
robertjdominguez committed Jun 20, 2024
1 parent 9fe6ba0 commit dd34bec
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 17 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import BaseUrlLink from '@site/src/components/databaseDocs/baseLink';
import BaseUrlLink from "@site/src/components/databaseDocs/baseLink";

## What's about to happen?

After initializing a connector and creating a JSON configuration, which represents our tables in ClickHouse, we can use
it to generate Hasura metadata. In the steps below, we'll utilize our `configuration.json` — populated by introspecting
our ClickHouse database — to create metadata which Hasura can use to construct our API.
After initializing a ClickHouse connector and creating a JSON configuration, which represents our tables in a format
which the connector specifies, we can use it to generate Hasura metadata. In the steps below, we'll utilize our
`configuration.json` — populated by introspecting our ClickHouse database — to create metadata which Hasura can use to
construct our API.

## Step 1. Create the Hasura metadata

Expand All @@ -19,7 +20,7 @@ our ClickHouse database — to create metadata which Hasura can use to construct

<!-- prettier-ignore -->
Hasura DDN uses a concept called "connector linking" to take [NDC-compliant](https://github.com/hasura/ndc-spec)
configuration JSON files for a data connector and transform them into an `hml` (Hasura Metadata Language) file as a <BaseUrlLink to="/supergraph-modeling/data-connectors/" text="DataConnectorLink" /> metadata object.
configuration JSON files for a data connector and transform them into an `hml` (Hasura Metadata Language) file as a <BaseUrlLink to="/supergraph-modeling/data-connector-links/" text="DataConnectorLink" /> metadata object.

Basically, metadata objects in `hml` files define our API.

Expand Down Expand Up @@ -57,7 +58,7 @@ schema:
functions: []
procedures: []
capabilities:
version: ''
version: ""
capabilities:
query: {}
mutation: {}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import BaseUrlLink from '@site/src/components/databaseDocs/baseLink';
import BaseUrlLink from "@site/src/components/databaseDocs/baseLink";

## What's about to happen

Expand All @@ -17,10 +17,8 @@ metadata.
:::

<!-- prettier-ignore -->
Hasura DDN uses a concept called "connector linking" to take [NDC-compliant](https://github.com/hasura/ndc-spec)
configuration JSON files for a data connector and transform them into an `hml` (Hasura Metadata Language) file as a

<BaseUrlLink to="/supergraph-modeling/data-connectors/" text="DataConnectorLink" /> metadata object.
Hasura DDN uses a concept called "connector linking" to take configuration JSON files from a data connector and
transform them into an [NDC-compliant](https://github.com/hasura/ndc-spec) `hml` (Hasura Metadata Language) file as a <BaseUrlLink to="/supergraph-modeling/data-connector-links/" text="DataConnectorLink" /> metadata object.

Basically, metadata objects in `hml` files define our API.

Expand Down Expand Up @@ -60,7 +58,7 @@ schema:
functions: []
procedures: []
capabilities:
version: ''
version: ""
capabilities:
query: {}
mutation: {}
Expand Down Expand Up @@ -496,7 +494,7 @@ schema:
argument_type:
type: named
name: MinKey
'Null':
"Null":
aggregate_functions:
count:
result_type:
Expand All @@ -509,7 +507,7 @@ schema:
type: custom
argument_type:
type: named
name: 'Null'
name: "Null"
ObjectId:
representation:
type: string
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import BaseUrlLink from '@site/src/components/databaseDocs/baseLink';
import BaseUrlLink from "@site/src/components/databaseDocs/baseLink";

## What's about to happen?

Expand All @@ -19,7 +19,7 @@ our PostgreSQL database — to create metadata which Hasura can use to construct

<!-- prettier-ignore -->
Hasura DDN uses a concept called "connector linking" to take [NDC-compliant](https://github.com/hasura/ndc-spec)
configuration JSON files for a data connector and transform them into an `hml` (Hasura Metadata Language) file as a <BaseUrlLink to="/supergraph-modeling/data-connectors/" text="DataConnectorLink" /> metadata object.
configuration JSON files for a data connector and transform them into an `hml` (Hasura Metadata Language) file as a <BaseUrlLink to="/supergraph-modeling/data-connector-links/" text="DataConnectorLink" /> metadata object.

Basically, metadata objects in `hml` files define our API.

Expand Down Expand Up @@ -57,7 +57,7 @@ schema:
functions: []
procedures: []
capabilities:
version: ''
version: ""
capabilities:
query: {}
mutation: {}
Expand Down

0 comments on commit dd34bec

Please sign in to comment.