Typo in JSON API Updating a row documentation (#1930)

This commit is contained in:
David Larlet 2022-12-08 16:12:34 -05:00 committed by GitHub
commit e539c1c024
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -715,7 +715,7 @@ To update a row, make a ``POST`` to ``/<database>/<table>/<row-pks>/-/update``.
} }
} }
``<row-pks>`` here is the :ref:`tilde-encoded <internals_tilde_encoding>` primary key value of the row to delete - or a comma-separated list of primary key values if the table has a composite primary key. ``<row-pks>`` here is the :ref:`tilde-encoded <internals_tilde_encoding>` primary key value of the row to update - or a comma-separated list of primary key values if the table has a composite primary key.
You only need to pass the columns you want to update. Any other columns will be left unchanged. You only need to pass the columns you want to update. Any other columns will be left unchanged.