Skip to content

Commit

Permalink
fix(docs): update broken anchor hash links
Browse files Browse the repository at this point in the history
  • Loading branch information
shoxton committed Jun 22, 2023
1 parent 3f464bb commit d9f65a7
Show file tree
Hide file tree
Showing 44 changed files with 123 additions and 124 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
- [x] Hosted Postgres Database. [Docs](https://supabase.com/docs/guides/database)
- [x] Authentication and Authorization. [Docs](https://supabase.com/docs/guides/auth)
- [x] Auto-generated APIs.
- [x] REST. [Docs](https://supabase.com/docs/guides/database/api#rest-api)
- [x] GraphQL. [Docs](https://supabase.com/docs/guides/database/api#graphql-api)
- [x] Realtime subscriptions. [Docs](https://supabase.com/docs/guides/database/api#realtime-api)
- [x] REST. [Docs](https://supabase.com/docs/guides/api#rest-api-overview)
- [x] GraphQL. [Docs](https://supabase.com/docs/guides/api#graphql-api-overview)
- [x] Realtime subscriptions. [Docs](https://supabase.com/docs/guides/api#realtime-api-overview)
- [x] Functions.
- [x] Database Functions. [Docs](https://supabase.com/docs/guides/database/functions)
- [x] Edge Functions [Docs](https://supabase.com/docs/guides/functions)
Expand Down Expand Up @@ -260,4 +260,3 @@ Our approach for client libraries is modular. Each sub-library is a standalone i
- [Ukrainian / Українська](/i18n/README.uk.md)
- [Vietnamese / Tiếng Việt](/i18n/README.vi-vn.md)
- [List of translations](/i18n/languages.md) <!--- Keep only this -->

6 changes: 3 additions & 3 deletions apps/docs/pages/guides/database/connecting-to-postgres.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ Supabase provides several options for programmatically connecting to your Postgr

Supabase provides auto-updating [APIs](/docs/guides/database/api). This is the easiest way to get started if you are managing data (fetching, inserting, updating). We provides several types of API to suit your preferences:

- [REST](/docs/guides/database/api#rest-api): interact with your database through a REST interface.
- [GraphQL](/docs/guides/database/api#graphql-api): interact with your database through a GraphQL interface.
- [Realtime](/docs/guides/database/api#realtime-api): listen to database changes over websockets.
- [REST](/docs/guides/api#rest-api-overview): interact with your database through a REST interface.
- [GraphQL](/docs/guides/api#graphql-api-overview): interact with your database through a GraphQL interface.
- [Realtime](/docs/guides/api#realtime-api-overview): listen to database changes over websockets.

## Direct connections

Expand Down
4 changes: 2 additions & 2 deletions apps/docs/pages/guides/getting-started/features.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ Build login and registration pages with custom themes. [Docs](/docs/guides/auth/

### Auto-generated REST API

RESTful APIs are autogenerated from your database, without a single line of code. [Docs](/docs/guides/database/api#rest-api-overview).
RESTful APIs are autogenerated from your database, without a single line of code. [Docs](/docs/guides/api#rest-api-overview-overview).

### Auto-generated GraphQL API

Fast GraphQL APIs using our custom Postgres GraphQL extension. [Docs](/docs/guides/database/api#graphql-api-overview).
Fast GraphQL APIs using our custom Postgres GraphQL extension. [Docs](/docs/guides/api#graphql-api-overview-overview).

### Realtime Database changes

Expand Down
4 changes: 2 additions & 2 deletions apps/docs/pages/guides/integrations/integrations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ The Supabase Marketplace brings together all the tools you need to extend your S
Supabase provides several integration points:

- The [Postgres connection](/docs/guides/database/connecting-to-postgres). Anything that works with Postgres also works with Supabase projects.
- The [Project REST API](/docs/guides/database/api#rest-api) & client libraries.
- The [Project GraphQL API](/docs/guides/database/api#graphql-api).
- The [Project REST API](/docs/guides/api#rest-api-overview) & client libraries.
- The [Project GraphQL API](/docs/guides/api#graphql-api-overview).
- The [Platform API](/docs/reference/api).

## List your integration
Expand Down
2 changes: 1 addition & 1 deletion apps/www/_alternatives/supabase-vs-firebase.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Supabase is an open source firebase alternative, but instead of being built arou

At Supabase we’ve always been huge fans of Firebase - so we started adding a few things on top of PostgreSQL in an attempt to reach feature parity, including:

- Auto-generated API - [query your data straight from the client](https://supabase.com/docs/guides/database/api#rest-api-2).
- Auto-generated API - [query your data straight from the client](https://supabase.com/docs/guides/api#rest-api-overview).
- Realtime - [changes in your data will be streamed directly to your application](https://supabase.com/docs/reference/dart/subscribe).
- Auth - [a simple to integrate auth system and SQL based rules engine](https://supabase.com/auth).
- Functions - [javascript and typescript functions that deploy out globally](https://supabase.com/edge-functions).
Expand Down
4 changes: 2 additions & 2 deletions apps/www/_alternatives/supabase-vs-heroku-postgres.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Heroku is a cloud application platform that offers managed PostgreSQL as a servi

Supabase also offers managed Postgres, the main difference is that with each deployment you also get:

- Auto-generated API - [never write an API again](https://supabase.com/docs/guides/database/api#rest-api-2)
- Auto-generated API - [never write an API again](https://supabase.com/docs/guides/api#rest-api-overview)
- Realtime - [subscribe to data changes via websockets](https://supabase.com/docs/reference/dart/subscribe)
- Auth - [users can log in and out of your application](https://supabase.com/auth)
- Functions - [deploy custom logic to the edge](https://supabase.com/edge-functions)
Expand All @@ -43,7 +43,7 @@ These are some of the key differences between Heroku Postgres and Supabase in te

- Supabase is more than just the raw database, it also comes with:
- [Connection pooling](https://supabase.com/docs/guides/database/connecting-to-postgres#connection-pool) so that you won’t run out of connections in a serverless environment.
- [Auto-generated APIs](https://supabase.com/docs/guides/database/api#rest-api-2) based on your schema, so you can communicate with your database directly from the client.
- [Auto-generated APIs](https://supabase.com/docs/guides/api#rest-api-overview) based on your schema, so you can communicate with your database directly from the client.
- [Realtime API](https://supabase.com/docs/reference/dart/subscribe) is useful for when you want to subscribe to changes to your database over websockets.
- [Auth API](https://supabase.com/auth) can be used to leverage Postgres’s Row Level Security model, and control access to sensitive data on a per user, or per group level.
- [Functions](https://supabase.com/edge-functions) can be deployed out to the edge directly from the Supabase CLI, which means you can run sensitive business logic or transformations in a serverless fashion.
Expand Down
2 changes: 1 addition & 1 deletion apps/www/_blog/2022-12-16-launch-week-6-wrap-up.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Today released pg_graphql 1.0 release and its general availability on our platfo

- Read the [announcement](/blog/pg-graphql-v1)
- Browse the [GitHub repo](https://github.com/supabase/pg_graphql/)
- View the [docs](/docs/guides/database/api#graphql-api)
- View the [docs](/docs/guides/api#graphql-api-overview)

## Postgres Point-in-Time Recovery

Expand Down
6 changes: 3 additions & 3 deletions i18n/README.bg.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
- [x] Хоствана база данни Postgres. [Документи](https://supabase.com/docs/guides/database)
- [x] Удостоверяване и оторизация. [Документи](https://supabase.com/docs/guides/auth)
- [x] Автоматично генерирани API.
- [x] REST. [Документи](https://supabase.com/docs/guides/database/api#rest-api)
- [x] GraphQL. [Документи](https://supabase.com/docs/guides/database/api#graphql-api)
- [x] Абонаменти в реално време. [Документи](https://supabase.com/docs/guides/database/api#realtime-api)
- [x] REST. [Документи](https://supabase.com/docs/guides/api#rest-api-overview)
- [x] GraphQL. [Документи](https://supabase.com/docs/guides/api#graphql-api-overview)
- [x] Абонаменти в реално време. [Документи](https://supabase.com/docs/guides/api#realtime-api-overview)
- [x] Функции.
- [x] Функции за бази данни. [Docs](https://supabase.com/docs/guides/database/functions)
- [x] Крайни функции [Docs](https://supabase.com/docs/guides/functions)
Expand Down
6 changes: 3 additions & 3 deletions i18n/README.bn.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
- [x] হোস্ট করা পোস্টগ্রেস ডাটাবেস. [ডক্স](https://supabase.com/docs/guides/database)
- [x] অথেনটিকেশন এবং অথরাইজড . [ডক্স](https://supabase.com/docs/guides/auth)
- [x] স্বয়ংক্রিয়ভাবে তৈরি এপিআই.
- [x] রেস্ট. [ডক্স](https://supabase.com/docs/guides/database/api#rest-api)
- [x] রিয়েলটাইম সাবস্ক্রিপশন. [ডক্স](https://supabase.com/docs/guides/database/api#realtime-api)
- [x] গ্রাফকিউএল (বেটা). [ডক্স](https://supabase.com/docs/guides/database/api#graphql-api)
- [x] রেস্ট. [ডক্স](https://supabase.com/docs/guides/api#rest-api-overview)
- [x] রিয়েলটাইম সাবস্ক্রিপশন. [ডক্স](https://supabase.com/docs/guides/api#realtime-api-overview)
- [x] গ্রাফকিউএল (বেটা). [ডক্স](https://supabase.com/docs/guides/api#graphql-api-overview)
- [x] ফাংশনস.
- [x] ডাটাবেস ফাংশনস. [ডক্স](https://supabase.com/docs/guides/database/functions)
- [x] এজ ফাংশনস. [ডক্স](https://supabase.com/docs/guides/functions)
Expand Down
6 changes: 3 additions & 3 deletions i18n/README.cs.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
- [x] hostovaná databáze Postgres. [Dokumenty](https://supabase.com/docs/guides/database)
- [x] Ověřování a autorizace. [Dokumenty](https://supabase.com/docs/guides/auth)
- [x] Automaticky generované rozhraní API.
- [x] REST. [Dokumenty](https://supabase.com/docs/guides/database/api#rest-api)
- [x] GraphQL. [Dokumenty](https://supabase.com/docs/guides/database/api#graphql-api)
- [x] Odběry v reálném čase. [Dokumenty](https://supabase.com/docs/guides/database/api#realtime-api)
- [x] REST. [Dokumenty](https://supabase.com/docs/guides/api#rest-api-overview)
- [x] GraphQL. [Dokumenty](https://supabase.com/docs/guides/api#graphql-api-overview)
- [x] Odběry v reálném čase. [Dokumenty](https://supabase.com/docs/guides/api#realtime-api-overview)
- [x] Funkce.
- [x] Databázové funkce. [Docs](https://supabase.com/docs/guides/database/functions)
- [x] Okrajové funkce [Docs](https://supabase.com/docs/guides/functions)
Expand Down
6 changes: 3 additions & 3 deletions i18n/README.da.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
- [x] Hosted Postgres Database. [Docs](https://supabase.com/docs/guides/database)
- [x] Autentifikation og autorisering. [Docs](https://supabase.com/docs/guides/auth)
- [x] Automatisk genererede API'er.
- [x] REST. [Docs](https://supabase.com/docs/guides/database/api#rest-api)
- [x] GraphQL. [Docs](https://supabase.com/docs/guides/database/api#graphql-api)
- [x] Realtidsabonnementer. [Docs](https://supabase.com/docs/guides/database/api#realtime-api)
- [x] REST. [Docs](https://supabase.com/docs/guides/api#rest-api-overview)
- [x] GraphQL. [Docs](https://supabase.com/docs/guides/api#graphql-api-overview)
- [x] Realtidsabonnementer. [Docs](https://supabase.com/docs/guides/api#realtime-api-overview)
- [x] Funktioner.
- [x] Databasefunktioner. [Docs](https://supabase.com/docs/guides/database/functions)
- [x] Edge-funktioner [Docs](https://supabase.com/docs/guides/functions)
Expand Down
6 changes: 3 additions & 3 deletions i18n/README.de.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
- [x] Gehostete Postgres-Datenbank. [Docs](https://supabase.com/docs/guides/database)
- [x] Authentifizierung und Autorisierung. [Docs](https://supabase.com/docs/guides/auth)
- [x] Auto-generierte APIs.
- [x] REST. [Docs](https://supabase.com/docs/guides/database/api#rest-api)
- [x] GraphQL. [Docs](https://supabase.com/docs/guides/database/api#graphql-api)
- [x] Echtzeit-Abonnements. [Docs](https://supabase.com/docs/guides/database/api#realtime-api)
- [x] REST. [Docs](https://supabase.com/docs/guides/api#rest-api-overview)
- [x] GraphQL. [Docs](https://supabase.com/docs/guides/api#graphql-api-overview)
- [x] Echtzeit-Abonnements. [Docs](https://supabase.com/docs/guides/api#realtime-api-overview)
- [x] Funktionen.
- [x] Datenbank-Funktionen. [Docs](https://supabase.com/docs/guides/database/functions)
- [x] Edge-Funktionen [Docs](https://supabase.com/docs/guides/functions)
Expand Down
6 changes: 3 additions & 3 deletions i18n/README.el.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
- [x] Hosted Postgres Database. [Docs](https://supabase.com/docs/guides/database)
- [x] Αυθεντικοποίηση και εξουσιοδότηση. [Έγγραφα](https://supabase.com/docs/guides/auth)
- [x] Αυτόματα παραγόμενα APIs.
- [x] REST. [Έγγραφα](https://supabase.com/docs/guides/database/api#rest-api)
- [x] GraphQL. [Docs](https://supabase.com/docs/guides/database/api#graphql-api)
- [x] Συνδρομές σε πραγματικό χρόνο. [Έγγραφα](https://supabase.com/docs/guides/database/api#realtime-api)
- [x] REST. [Έγγραφα](https://supabase.com/docs/guides/api#rest-api-overview)
- [x] GraphQL. [Docs](https://supabase.com/docs/guides/api#graphql-api-overview)
- [x] Συνδρομές σε πραγματικό χρόνο. [Έγγραφα](https://supabase.com/docs/guides/api#realtime-api-overview)
- [x] Συναρτήσεις.
- [x] Συναρτήσεις βάσης δεδομένων. [Docs](https://supabase.com/docs/guides/database/functions)
- [x] Edge Functions [Docs](https://supabase.com/docs/guides/functions)
Expand Down
6 changes: 3 additions & 3 deletions i18n/README.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
- Base de datos Postgres alojada. [Documentación](https://supabase.com/docs/guides/database)
- [x] Autenticación y autorización. [Documentos](https://supabase.com/docs/guides/auth)
- [x] API autogeneradas.
- [x] REST. [Docs](https://supabase.com/docs/guides/database/api#rest-api)
- [x] GraphQL. [Documentos](https://supabase.com/docs/guides/database/api#graphql-api)
- [x] Suscripciones en tiempo real. [Documentos](https://supabase.com/docs/guides/database/api#realtime-api)
- [x] REST. [Docs](https://supabase.com/docs/guides/api#rest-api-overview)
- [x] GraphQL. [Documentos](https://supabase.com/docs/guides/api#graphql-api-overview)
- [x] Suscripciones en tiempo real. [Documentos](https://supabase.com/docs/guides/api#realtime-api-overview)
- [x] Funciones.
- [x] Funciones de base de datos. [Docs](https://supabase.com/docs/guides/database/functions)
- [x] Funciones de borde [Docs](https://supabase.com/docs/guides/functions)
Expand Down
6 changes: 3 additions & 3 deletions i18n/README.et.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
- [x] Hostitud Postgres andmebaas. [Dokumendid](https://supabase.com/docs/guides/database)
- [x] Autentimine ja autoriseerimine. [Dokumendid](https://supabase.com/docs/guides/auth)
- [x] Automaatselt genereeritud APId.
- [x] REST. [Dokumendid](https://supabase.com/docs/guides/database/api#rest-api)
- [x] GraphQL. [Dokumendid](https://supabase.com/docs/guides/database/api#graphql-api)
- [x] Reaalajas toimivad tellimused. [Dokumendid](https://supabase.com/docs/guides/database/api#realtime-api)
- [x] REST. [Dokumendid](https://supabase.com/docs/guides/api#rest-api-overview)
- [x] GraphQL. [Dokumendid](https://supabase.com/docs/guides/api#graphql-api-overview)
- [x] Reaalajas toimivad tellimused. [Dokumendid](https://supabase.com/docs/guides/api#realtime-api-overview)
- [x] Funktsioonid.
- [x] Andmebaasi funktsioonid. [Dokumendid](https://supabase.com/docs/guides/database/functions)
- [x] Edge Functions [Docs](https://supabase.com/docs/guides/functions)
Expand Down
6 changes: 3 additions & 3 deletions i18n/README.fi.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
- [x] Hosted Postgres Database. [Docs](https://supabase.com/docs/guides/database)
- [x] Tunnistus ja valtuutus. [Docs](https://supabase.com/docs/guides/auth)
- [x] Automaattisesti luodut API:t.
- [x] REST. [Asiakirjat](https://supabase.com/docs/guides/database/api#rest-api)
- [x] GraphQL. [Asiakirjat](https://supabase.com/docs/guides/database/api#graphql-api)
- [x] Reaaliaikaiset tilaukset. [Asiakirjat](https://supabase.com/docs/guides/database/api#realtime-api)
- [x] REST. [Asiakirjat](https://supabase.com/docs/guides/api#rest-api-overview)
- [x] GraphQL. [Asiakirjat](https://supabase.com/docs/guides/api#graphql-api-overview)
- [x] Reaaliaikaiset tilaukset. [Asiakirjat](https://supabase.com/docs/guides/api#realtime-api-overview)
- [x] Funktiot.
- [x] Tietokantafunktiot. [Docs](https://supabase.com/docs/guides/database/functions)
- [x] Reunatoiminnot [Docs](https://supabase.com/docs/guides/functions)
Expand Down
6 changes: 3 additions & 3 deletions i18n/README.fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
- [x] Base de données Postgres hébergée. [Docs](https://supabase.com/docs/guides/database)
- [x] Authentification et autorisation. [Docs](https://supabase.com/docs/guides/auth)
- [x] API générées automatiquement.
- [x] REST. [Docs](https://supabase.com/docs/guides/database/api#rest-api)
- [x] GraphQL. [Docs](https://supabase.com/docs/guides/database/api#graphql-api)
- [x] Abonnements en temps réel. [Docs](https://supabase.com/docs/guides/database/api#realtime-api)
- [x] REST. [Docs](https://supabase.com/docs/guides/api#rest-api-overview)
- [x] GraphQL. [Docs](https://supabase.com/docs/guides/api#graphql-api-overview)
- [x] Abonnements en temps réel. [Docs](https://supabase.com/docs/guides/api#realtime-api-overview)
- [x] Fonctions.
- [x] Fonctions de base de données. [Docs](https://supabase.com/docs/guides/database/functions)
- [x] Fonctions Edge [Docs](https://supabase.com/docs/guides/functions)
Expand Down
6 changes: 3 additions & 3 deletions i18n/README.hi.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
- [x] होस्टेड पोस्टग्रेज डेटाबेस। [प्रलेखन](https://supabase.com/docs/guides/database)
- [x] प्रमाणीकरण और प्राधिकरण। [प्रलेखन](https://supabase.com/docs/guides/auth)
- [x] उत्पन्न एपीआईस।
- [x] रेस्ट। [प्रलेखन](https://supabase.com/docs/guides/database/api#rest-api)
- [x] रीयलटाइम सदस्यता। [प्रलेखन](https://supabase.com/docs/guides/database/api#realtime-api)
- [x] ग्राफ़क्यूएल (प्रयोगात्मक)। [प्रलेखन](https://supabase.com/docs/guides/database/api#graphql-api)
- [x] रेस्ट। [प्रलेखन](https://supabase.com/docs/guides/api#rest-api-overview)
- [x] रीयलटाइम सदस्यता। [प्रलेखन](https://supabase.com/docs/guides/api#realtime-api-overview)
- [x] ग्राफ़क्यूएल (प्रयोगात्मक)। [प्रलेखन](https://supabase.com/docs/guides/api#graphql-api-overview)
- [x] फ़ंक्शंस।
- [x] डेटाबेस फ़ंक्शंस। [प्रलेखन](https://supabase.com/docs/guides/database/functions)
- [x] एज फ़ंक्शंस। [प्रलेखन](https://supabase.com/docs/guides/functions)
Expand Down
6 changes: 3 additions & 3 deletions i18n/README.hu.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
- [x] Hosted Postgres adatbázis. [Docs](https://supabase.com/docs/guides/database)
- [x] Hitelesítés és engedélyezés. [Docs](https://supabase.com/docs/guides/auth)
- [x] Automatikusan generált API-k.
- [x] REST. [Docs](https://supabase.com/docs/guides/database/api#rest-api)
- [x] GraphQL. [Docs](https://supabase.com/docs/guides/database/api#graphql-api)
- [x] Valós idejű előfizetések. [Docs](https://supabase.com/docs/guides/database/api#realtime-api)
- [x] REST. [Docs](https://supabase.com/docs/guides/api#rest-api-overview)
- [x] GraphQL. [Docs](https://supabase.com/docs/guides/api#graphql-api-overview)
- [x] Valós idejű előfizetések. [Docs](https://supabase.com/docs/guides/api#realtime-api-overview)
- [x] Funkciók.
- [x] Database Functions. [Docs](https://supabase.com/docs/guides/database/functions)
- [x] Edge Functions [Docs](https://supabase.com/docs/guides/functions)
Expand Down
Loading

0 comments on commit d9f65a7

Please sign in to comment.