docs: Add links to resource embedding from insert/update/delete sections

Resolves https://github.com/PostgREST/postgrest-docs/issues/277
This commit is contained in:
Wolfgang Walther
2024-02-19 21:54:15 +01:00
committed by Wolfgang Walther
parent 77715dcabf
commit 4325a4f9d5
+3 -3
View File
@@ -397,7 +397,7 @@ To create a row in a database table post a JSON object whose keys are the names
HTTP/1.1 201 Created
No response body will be returned by default but you can use :ref:`prefer_return` to get the affected resource.
No response body will be returned by default but you can use :ref:`prefer_return` to get the affected resource and :ref:`resource_embedding` to add related resources.
x-www-form-urlencoded
---------------------
@@ -546,7 +546,7 @@ To update a row or rows in a table, use the PATCH verb. Use :ref:`h_filter` to s
-X PATCH -H "Content-Type: application/json" \
-d '{ "category": "child" }'
Updates also support :ref:`prefer_return` plus :ref:`v_filter`.
Updates also support :ref:`prefer_return`, :ref:`resource_embedding` and :ref:`v_filter`.
.. warning::
@@ -625,7 +625,7 @@ To delete rows in a table, use the DELETE verb plus :ref:`h_filter`. For instanc
curl "http://localhost:3000/user?active=is.false" -X DELETE
Deletions also support :ref:`prefer_return` plus :ref:`v_filter`.
Deletions also support :ref:`prefer_return`, :ref:`resource_embedding` and :ref:`v_filter`.
.. code-block:: bash