fix broken links

This commit is contained in:
steve-chavez
2022-05-02 19:42:02 -05:00
committed by Steve Chavez
parent 72bffddbf1
commit 5f3284eed0
6 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -1271,7 +1271,7 @@ A request with ``directors`` embedded:
Embedding after Insertions/Updates/Deletions
--------------------------------------------
You can embed related resources after doing :ref:`insert_update` or :ref:`delete`.
You can embed related resources after doing :ref:`insert`, :ref:`update` or :ref:`delete`.
Say you want to insert a **film** and then get some of its attributes plus embed its **director**.
+1 -1
View File
@@ -22,7 +22,7 @@ Templates
---------
* `compose-postgrest <https://github.com/mattddowney/compose-postgrest>`_ - docker-compose setup with Nginx and HTML example
* `svelte-postgrest-template <https://github.com/guyromm/svelte-postgrest-template>`_ - Svelte/SvelteKit, PostgREST, EveryLayout and social auth - `blog post <https://www.webgma.co.il/Articles/rapid-prototyping-with-postgrest-and-svelte/en/>`_
* `svelte-postgrest-template <https://github.com/guyromm/svelte-postgrest-template>`_ - Svelte/SvelteKit, PostgREST, EveryLayout and social auth
.. _eco_example_apps:
+1 -1
View File
@@ -150,7 +150,7 @@ Related to the HTTP request elements.
| PGRST101 | |
+---------------+-------------------------------------------------------------+
| .. _pgrst102: | Related to the request body structure. |
| | See :ref:`insert_update`. |
| | See :ref:`insert` and :ref:`update`. |
| PGRST102 | |
+---------------+-------------------------------------------------------------+
| .. _pgrst103: | Related to :ref:`limits`. |
+1 -1
View File
@@ -48,7 +48,7 @@ You can also use your OS package manager.
.. group-tab:: Windows
You can install PostgREST using `Chocolatey <https://community.chocolatey.org/packages/postgrest>`_ or `Scoop <https://scoop.sh>`_.
You can install PostgREST using `Chocolatey <https://community.chocolatey.org/packages/postgrest>`_ or `Scoop <https://github.com/ScoopInstaller/Scoop>`_.
.. code:: bash
+2 -2
View File
@@ -25,7 +25,7 @@ Added
* Allow schema cache reloading using PostgreSQL :ref:`NOTIFY <schema_reloading_notify>` command. This enables :ref:`auto_schema_reloading`.
|br| -- `@steve-chavez <https://github.com/steve-chavez>`_
* Allow sending the header ``Prefer: headers-only`` to get a response with a ``Location`` header. See :ref:`insert_update`.
* Allow sending the header ``Prefer: headers-only`` to get a response with a ``Location`` header. See :ref:`insert`.
|br| -- `@laurenceisla <https://github.com/laurenceisla>`_
* Allow :ref:`external_connection_poolers` such as PgBouncer in transaction pooling mode.
@@ -78,7 +78,7 @@ Changed
|br| -- `@steve-chavez <https://github.com/steve-chavez>`_
* POST requests for insertions no longer include a ``Location`` header in the response by default and behave the same way as having a
``Prefer: return=minimal`` header in the request. This prevents permissions errors when having a write-only table. See :ref:`insert_update`.
``Prefer: return=minimal`` header in the request. This prevents permissions errors when having a write-only table. See :ref:`insert`.
|br| -- `@laurenceisla <https://github.com/laurenceisla>`_
* Modified the default logging level from ``info`` to ``error``. See :ref:`log-level`.
+1 -1
View File
@@ -16,7 +16,7 @@ in order to avoid repeating this work, PostgREST uses a schema cache.
+--------------------------------------------+-------------------------------------------------------------------------------+
| :ref:`Upserts <upsert>` | Primary keys |
+--------------------------------------------+-------------------------------------------------------------------------------+
| :ref:`Insertions <insert_update>` | Primary keys (optional: only if the Location header is requested) |
| :ref:`Insertions <insert>` | Primary keys (optional: only if the Location header is requested) |
+--------------------------------------------+-------------------------------------------------------------------------------+
| :ref:`OPTIONS requests <options_requests>` | View INSTEAD OF TRIGGERS and primary keys |
+--------------------------------------------+-------------------------------------------------------------------------------+