From 5e856a22a85f3e8b7721a205fdfd0045d0fe5d5a Mon Sep 17 00:00:00 2001 From: steve-chavez Date: Fri, 25 May 2018 11:36:45 -0500 Subject: [PATCH] Fix #132, remove deprecation notices --- api.rst | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/api.rst b/api.rst index 861af8dcf..752b7c7de 100644 --- a/api.rst +++ b/api.rst @@ -79,12 +79,6 @@ adj is adjacent to, e.g. :code:`?range=adj.(1,10)` :code:`-|-` not negates another operator, see below :code:`NOT` ============ =============================================== ===================== -.. note:: - - As of PostgREST v0.4.3.0, the symbol operators :code:`@@, @>, <@` have been - deprecated in lieu of their mnemonic equivalents. They are still supported - but will be removed in v0.5.0.0. - To negate any operator, prefix it with :code:`not` like :code:`?a=not.eq.2` or :code:`?not.and=(a.gte.0,a.lte.100)` . For more complicated filters you will have to create a new view in the database, or use a stored procedure. For instance, here's a view to show "today's stories" including possibly older pinned stories: @@ -444,10 +438,6 @@ this: GET /films?select=title,director:directors(id,last_name) HTTP/1.1 -.. note:: - - As of PostgREST v0.4.1.0, parens :code:`()` are used rather than brackets :code:`{}` for the list of embedded columns. Brackets are still supported, but are deprecated and will be removed in v0.5.0.0. - PostgREST can also detect relations going through join tables. Thus you can request the Actors for Films (which in this case finds the information through Roles). You can also reverse the direction of inclusion, asking for all Directors with each including the list of their Films: .. code-block:: http