From d9055921150c9f700cdefa21d0d6bac933fca42b Mon Sep 17 00:00:00 2001 From: Taimoor Zaeem Date: Thu, 20 Nov 2025 11:35:00 +0500 Subject: [PATCH] docs: add asterisk character to reserved characters list The `*` character is a reserved character in the postgrest url grammar but we didn't mention it in the docs. Now added. Signed-off-by: Taimoor Zaeem --- docs/references/api/url_grammar.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/references/api/url_grammar.rst b/docs/references/api/url_grammar.rst index 850468bdb..433c2b014 100644 --- a/docs/references/api/url_grammar.rst +++ b/docs/references/api/url_grammar.rst @@ -51,7 +51,7 @@ You can request table/columns with spaces in them by percent encoding the spaces Reserved characters ~~~~~~~~~~~~~~~~~~~ -If filters include PostgREST reserved characters(``,``, ``.``, ``:``, ``(``, ``)``) you'll have to surround them in percent encoded double quotes ``%22`` for correct processing. +If filters include PostgREST reserved characters(``,``, ``.``, ``:``, ``*``, ``(``, ``)``) you'll have to surround them in percent encoded double quotes ``%22`` for correct processing. Here ``Hebdon,John`` and ``Williams,Mary`` are values.