├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── backend ├── .prettierrc ├── package.json ├── sql │ ├── columns.sql │ ├── columns_original.sql │ ├── config.sql │ ├── constraints.sql │ ├── extensions.sql │ ├── foreign_keys.sql │ ├── functions.sql │ ├── grants.sql │ ├── index.ts │ ├── indexes.sql │ ├── indexes_original.sql │ ├── joins.sql │ ├── policies.sql │ ├── primary_keys.sql │ ├── primary_keys_original.sql │ ├── relationships.sql │ ├── replication_temp.sql │ ├── roles.sql │ ├── schemas.sql │ ├── sequences.sql │ ├── table_size.sql │ ├── tables.sql │ ├── tables_original.sql │ ├── types.sql │ ├── version.sql │ ├── views.sql │ └── views_original.sql ├── src │ ├── index.ts │ ├── sample1.json │ ├── schema.graphql │ ├── types │ │ ├── HasuraMetadataV2.ts │ │ ├── SQL.ts │ │ └── sql-query-results.ts │ └── utils.ts └── tsconfig.json ├── chinook_pg_serial_pk_proper_naming.sql ├── data-dictionary-readme-demo.gif ├── hasura ├── config.yaml ├── docker-compose.yaml ├── metadata │ ├── actions.graphql │ ├── actions.yaml │ ├── allow_list.yaml │ ├── cron_triggers.yaml │ ├── functions.yaml │ ├── query_collections.yaml │ ├── remote_schemas.yaml │ ├── tables.yaml │ └── version.yaml └── migrations │ ├── 1601667241747_chinook_db_and_data │ ├── down.sql │ └── up.sql │ ├── 1603984241461_set_fk_public_film_category_category_id │ ├── down.sql │ └── up.sql │ ├── 1603984251271_set_fk_public_film_category_film_id │ ├── down.sql │ └── up.sql │ ├── 1603984373569_set_fk_public_film_actor_film_id │ ├── down.sql │ └── up.sql │ ├── 1603984383007_set_fk_public_film_actor_actor_id │ ├── down.sql │ └── up.sql │ └── 1606243527219_add_comments_to_tables │ ├── down.sql │ └── up.sql └── react-app ├── .env ├── .env.production ├── .gitignore ├── .prettierrc ├── README.md ├── components ├── ReactModal │ └── index.tsx ├── SearchInput │ └── index.tsx ├── graphiql.tsx ├── layout.tsx ├── react-table.tsx ├── related-types.tsx ├── table.tsx └── visualization.tsx ├── generated-gql-client ├── guards.esm.js ├── index.d.ts ├── index.js ├── schema.graphql ├── schema.ts └── types.esm.js ├── graphql-server-utils ├── schema.ts ├── sql-queries │ ├── checks.queries.ts │ ├── checks.sql │ ├── columns.queries.ts │ ├── columns.sql │ ├── foreign-keys.queries.ts │ ├── foreign-keys.sql │ ├── indexes.queries.ts │ ├── indexes.sql │ ├── primary-keys.queries.ts │ ├── primary-keys.sql │ ├── tables.queries.ts │ ├── tables.sql │ ├── views.queries.ts │ └── views.sql ├── types │ ├── HasuraMetadataV2.ts │ └── sql-query-results.ts └── utils.ts ├── next-env.d.ts ├── next.config.js ├── package-lock.json ├── package.json ├── pages ├── _app.tsx ├── api │ └── graphql.ts ├── datagraph │ └── index.tsx ├── graphiql │ └── index.tsx ├── graphql-operations.tsx ├── index.tsx └── models │ ├── database │ └── [table].tsx │ └── graphql │ └── [operation].tsx ├── pgtyped-config.json ├── postcss.config.js ├── public ├── changeIcon.svg ├── closeIcon.svg ├── favicon.ico ├── hasura_logo.svg └── vercel.svg ├── react-table-config.d.ts ├── store ├── index.ts ├── model.ts └── utils.ts ├── styles ├── Home.module.css └── globals.css ├── tailwind.config.js ├── tsconfig.json └── utils ├── graphqlClient.ts ├── misc.ts ├── querySelectionSets.ts └── sampleGroupedMetadataResult.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/README.md -------------------------------------------------------------------------------- /backend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/.prettierrc -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/sql/columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/columns.sql -------------------------------------------------------------------------------- /backend/sql/columns_original.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/columns_original.sql -------------------------------------------------------------------------------- /backend/sql/config.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/config.sql -------------------------------------------------------------------------------- /backend/sql/constraints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/constraints.sql -------------------------------------------------------------------------------- /backend/sql/extensions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/extensions.sql -------------------------------------------------------------------------------- /backend/sql/foreign_keys.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/foreign_keys.sql -------------------------------------------------------------------------------- /backend/sql/functions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/functions.sql -------------------------------------------------------------------------------- /backend/sql/grants.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/grants.sql -------------------------------------------------------------------------------- /backend/sql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/index.ts -------------------------------------------------------------------------------- /backend/sql/indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/indexes.sql -------------------------------------------------------------------------------- /backend/sql/indexes_original.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/indexes_original.sql -------------------------------------------------------------------------------- /backend/sql/joins.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/joins.sql -------------------------------------------------------------------------------- /backend/sql/policies.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/policies.sql -------------------------------------------------------------------------------- /backend/sql/primary_keys.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/primary_keys.sql -------------------------------------------------------------------------------- /backend/sql/primary_keys_original.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/primary_keys_original.sql -------------------------------------------------------------------------------- /backend/sql/relationships.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/relationships.sql -------------------------------------------------------------------------------- /backend/sql/replication_temp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/replication_temp.sql -------------------------------------------------------------------------------- /backend/sql/roles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/roles.sql -------------------------------------------------------------------------------- /backend/sql/schemas.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/schemas.sql -------------------------------------------------------------------------------- /backend/sql/sequences.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/sequences.sql -------------------------------------------------------------------------------- /backend/sql/table_size.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/table_size.sql -------------------------------------------------------------------------------- /backend/sql/tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/tables.sql -------------------------------------------------------------------------------- /backend/sql/tables_original.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/tables_original.sql -------------------------------------------------------------------------------- /backend/sql/types.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/types.sql -------------------------------------------------------------------------------- /backend/sql/version.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/version.sql -------------------------------------------------------------------------------- /backend/sql/views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/views.sql -------------------------------------------------------------------------------- /backend/sql/views_original.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/sql/views_original.sql -------------------------------------------------------------------------------- /backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/src/index.ts -------------------------------------------------------------------------------- /backend/src/sample1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/src/sample1.json -------------------------------------------------------------------------------- /backend/src/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/src/schema.graphql -------------------------------------------------------------------------------- /backend/src/types/HasuraMetadataV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/src/types/HasuraMetadataV2.ts -------------------------------------------------------------------------------- /backend/src/types/SQL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/src/types/SQL.ts -------------------------------------------------------------------------------- /backend/src/types/sql-query-results.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/src/types/sql-query-results.ts -------------------------------------------------------------------------------- /backend/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/src/utils.ts -------------------------------------------------------------------------------- /backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/backend/tsconfig.json -------------------------------------------------------------------------------- /chinook_pg_serial_pk_proper_naming.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/chinook_pg_serial_pk_proper_naming.sql -------------------------------------------------------------------------------- /data-dictionary-readme-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/data-dictionary-readme-demo.gif -------------------------------------------------------------------------------- /hasura/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/hasura/config.yaml -------------------------------------------------------------------------------- /hasura/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/hasura/docker-compose.yaml -------------------------------------------------------------------------------- /hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/hasura/metadata/actions.yaml -------------------------------------------------------------------------------- /hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /hasura/metadata/functions.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /hasura/metadata/tables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/hasura/metadata/tables.yaml -------------------------------------------------------------------------------- /hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 2 2 | -------------------------------------------------------------------------------- /hasura/migrations/1601667241747_chinook_db_and_data/down.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hasura/migrations/1601667241747_chinook_db_and_data/up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/hasura/migrations/1601667241747_chinook_db_and_data/up.sql -------------------------------------------------------------------------------- /hasura/migrations/1603984241461_set_fk_public_film_category_category_id/down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/hasura/migrations/1603984241461_set_fk_public_film_category_category_id/down.sql -------------------------------------------------------------------------------- /hasura/migrations/1603984241461_set_fk_public_film_category_category_id/up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/hasura/migrations/1603984241461_set_fk_public_film_category_category_id/up.sql -------------------------------------------------------------------------------- /hasura/migrations/1603984251271_set_fk_public_film_category_film_id/down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/hasura/migrations/1603984251271_set_fk_public_film_category_film_id/down.sql -------------------------------------------------------------------------------- /hasura/migrations/1603984251271_set_fk_public_film_category_film_id/up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/hasura/migrations/1603984251271_set_fk_public_film_category_film_id/up.sql -------------------------------------------------------------------------------- /hasura/migrations/1603984373569_set_fk_public_film_actor_film_id/down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/hasura/migrations/1603984373569_set_fk_public_film_actor_film_id/down.sql -------------------------------------------------------------------------------- /hasura/migrations/1603984373569_set_fk_public_film_actor_film_id/up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/hasura/migrations/1603984373569_set_fk_public_film_actor_film_id/up.sql -------------------------------------------------------------------------------- /hasura/migrations/1603984383007_set_fk_public_film_actor_actor_id/down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/hasura/migrations/1603984383007_set_fk_public_film_actor_actor_id/down.sql -------------------------------------------------------------------------------- /hasura/migrations/1603984383007_set_fk_public_film_actor_actor_id/up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/hasura/migrations/1603984383007_set_fk_public_film_actor_actor_id/up.sql -------------------------------------------------------------------------------- /hasura/migrations/1606243527219_add_comments_to_tables/down.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hasura/migrations/1606243527219_add_comments_to_tables/up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/hasura/migrations/1606243527219_add_comments_to_tables/up.sql -------------------------------------------------------------------------------- /react-app/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/.env -------------------------------------------------------------------------------- /react-app/.env.production: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_HASURA_URL=https://data-dictionary.hasura.app 2 | -------------------------------------------------------------------------------- /react-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/.gitignore -------------------------------------------------------------------------------- /react-app/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/.prettierrc -------------------------------------------------------------------------------- /react-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/README.md -------------------------------------------------------------------------------- /react-app/components/ReactModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/components/ReactModal/index.tsx -------------------------------------------------------------------------------- /react-app/components/SearchInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/components/SearchInput/index.tsx -------------------------------------------------------------------------------- /react-app/components/graphiql.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/components/graphiql.tsx -------------------------------------------------------------------------------- /react-app/components/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/components/layout.tsx -------------------------------------------------------------------------------- /react-app/components/react-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/components/react-table.tsx -------------------------------------------------------------------------------- /react-app/components/related-types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/components/related-types.tsx -------------------------------------------------------------------------------- /react-app/components/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/components/table.tsx -------------------------------------------------------------------------------- /react-app/components/visualization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/components/visualization.tsx -------------------------------------------------------------------------------- /react-app/generated-gql-client/guards.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/generated-gql-client/guards.esm.js -------------------------------------------------------------------------------- /react-app/generated-gql-client/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/generated-gql-client/index.d.ts -------------------------------------------------------------------------------- /react-app/generated-gql-client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/generated-gql-client/index.js -------------------------------------------------------------------------------- /react-app/generated-gql-client/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/generated-gql-client/schema.graphql -------------------------------------------------------------------------------- /react-app/generated-gql-client/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/generated-gql-client/schema.ts -------------------------------------------------------------------------------- /react-app/generated-gql-client/types.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/generated-gql-client/types.esm.js -------------------------------------------------------------------------------- /react-app/graphql-server-utils/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/graphql-server-utils/schema.ts -------------------------------------------------------------------------------- /react-app/graphql-server-utils/sql-queries/checks.queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/graphql-server-utils/sql-queries/checks.queries.ts -------------------------------------------------------------------------------- /react-app/graphql-server-utils/sql-queries/checks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/graphql-server-utils/sql-queries/checks.sql -------------------------------------------------------------------------------- /react-app/graphql-server-utils/sql-queries/columns.queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/graphql-server-utils/sql-queries/columns.queries.ts -------------------------------------------------------------------------------- /react-app/graphql-server-utils/sql-queries/columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/graphql-server-utils/sql-queries/columns.sql -------------------------------------------------------------------------------- /react-app/graphql-server-utils/sql-queries/foreign-keys.queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/graphql-server-utils/sql-queries/foreign-keys.queries.ts -------------------------------------------------------------------------------- /react-app/graphql-server-utils/sql-queries/foreign-keys.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/graphql-server-utils/sql-queries/foreign-keys.sql -------------------------------------------------------------------------------- /react-app/graphql-server-utils/sql-queries/indexes.queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/graphql-server-utils/sql-queries/indexes.queries.ts -------------------------------------------------------------------------------- /react-app/graphql-server-utils/sql-queries/indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/graphql-server-utils/sql-queries/indexes.sql -------------------------------------------------------------------------------- /react-app/graphql-server-utils/sql-queries/primary-keys.queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/graphql-server-utils/sql-queries/primary-keys.queries.ts -------------------------------------------------------------------------------- /react-app/graphql-server-utils/sql-queries/primary-keys.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/graphql-server-utils/sql-queries/primary-keys.sql -------------------------------------------------------------------------------- /react-app/graphql-server-utils/sql-queries/tables.queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/graphql-server-utils/sql-queries/tables.queries.ts -------------------------------------------------------------------------------- /react-app/graphql-server-utils/sql-queries/tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/graphql-server-utils/sql-queries/tables.sql -------------------------------------------------------------------------------- /react-app/graphql-server-utils/sql-queries/views.queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/graphql-server-utils/sql-queries/views.queries.ts -------------------------------------------------------------------------------- /react-app/graphql-server-utils/sql-queries/views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/graphql-server-utils/sql-queries/views.sql -------------------------------------------------------------------------------- /react-app/graphql-server-utils/types/HasuraMetadataV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/graphql-server-utils/types/HasuraMetadataV2.ts -------------------------------------------------------------------------------- /react-app/graphql-server-utils/types/sql-query-results.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/graphql-server-utils/types/sql-query-results.ts -------------------------------------------------------------------------------- /react-app/graphql-server-utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/graphql-server-utils/utils.ts -------------------------------------------------------------------------------- /react-app/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/next-env.d.ts -------------------------------------------------------------------------------- /react-app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/next.config.js -------------------------------------------------------------------------------- /react-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/package-lock.json -------------------------------------------------------------------------------- /react-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/package.json -------------------------------------------------------------------------------- /react-app/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/pages/_app.tsx -------------------------------------------------------------------------------- /react-app/pages/api/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/pages/api/graphql.ts -------------------------------------------------------------------------------- /react-app/pages/datagraph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/pages/datagraph/index.tsx -------------------------------------------------------------------------------- /react-app/pages/graphiql/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/pages/graphiql/index.tsx -------------------------------------------------------------------------------- /react-app/pages/graphql-operations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/pages/graphql-operations.tsx -------------------------------------------------------------------------------- /react-app/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/pages/index.tsx -------------------------------------------------------------------------------- /react-app/pages/models/database/[table].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/pages/models/database/[table].tsx -------------------------------------------------------------------------------- /react-app/pages/models/graphql/[operation].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/pages/models/graphql/[operation].tsx -------------------------------------------------------------------------------- /react-app/pgtyped-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/pgtyped-config.json -------------------------------------------------------------------------------- /react-app/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: ["tailwindcss", "autoprefixer"] 3 | } 4 | -------------------------------------------------------------------------------- /react-app/public/changeIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/public/changeIcon.svg -------------------------------------------------------------------------------- /react-app/public/closeIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/public/closeIcon.svg -------------------------------------------------------------------------------- /react-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/public/favicon.ico -------------------------------------------------------------------------------- /react-app/public/hasura_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/public/hasura_logo.svg -------------------------------------------------------------------------------- /react-app/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/public/vercel.svg -------------------------------------------------------------------------------- /react-app/react-table-config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/react-table-config.d.ts -------------------------------------------------------------------------------- /react-app/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/store/index.ts -------------------------------------------------------------------------------- /react-app/store/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/store/model.ts -------------------------------------------------------------------------------- /react-app/store/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/store/utils.ts -------------------------------------------------------------------------------- /react-app/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/styles/Home.module.css -------------------------------------------------------------------------------- /react-app/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/styles/globals.css -------------------------------------------------------------------------------- /react-app/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/tailwind.config.js -------------------------------------------------------------------------------- /react-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/tsconfig.json -------------------------------------------------------------------------------- /react-app/utils/graphqlClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/utils/graphqlClient.ts -------------------------------------------------------------------------------- /react-app/utils/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/utils/misc.ts -------------------------------------------------------------------------------- /react-app/utils/querySelectionSets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/utils/querySelectionSets.ts -------------------------------------------------------------------------------- /react-app/utils/sampleGroupedMetadataResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/data-dictionary/HEAD/react-app/utils/sampleGroupedMetadataResult.ts --------------------------------------------------------------------------------