About 15,300 results
Open links in new tab
  1. PostgREST Documentation — PostgREST 14 documentation

    PostgREST is a standalone web server that turns your PostgreSQL database directly into a RESTful API. The structural constraints and permissions in the database determine the API endpoints and …

  2. Installation — PostgREST 12.2 documentation

    There are two ways to run the PostgREST container: with an existing external database, or through docker-compose. Containerized PostgREST with native PostgreSQL

  3. Tutorial 0 - Get it Running — PostgREST 12.2 documentation

    PostgREST is a standalone web server which turns a PostgreSQL database into a RESTful API. It serves an API that is customized based on the structure of the underlying database.

  4. API — PostgREST 12.2 documentation

    API PostgREST exposes three database objects of a schema as resources: tables, views and functions.

  5. PostgREST Documentation — PostgREST 13.0 documentation

    PostgREST is a standalone web server that turns your PostgreSQL database directly into a RESTful API. The structural constraints and permissions in the database determine the API endpoints and …

  6. Tables and Views — PostgREST 12.2 documentation

    After creating a table or changing its primary key, you must refresh PostgREST schema cache for upsert to work properly. To learn how to refresh the cache see Schema Cache Reloading.

  7. Authentication — PostgREST 12.2 documentation

    We’ll briefly explain each critique, how PostgREST deals with it, and give recommendations for appropriate user action. The critique against the JWT standard is voiced in detail elsewhere on the web.

  8. API — PostgREST 11.2 documentation

    API PostgREST exposes three database objects of a schema as resources: tables, views and stored procedures.

  9. Tables and Views — PostgREST 10.2 documentation

    PostgREST executes all GET requests in a read-only transaction. Modifying the database inside read-only transactions is not possible and calling volatile functions with GET will fail.

  10. Database Authorization — PostgREST 12.2 documentation

    When an authenticated user makes a request PostgREST will switch into the database role for that user, which in addition to restricting queries, is available to SQL through the current_user variable. You …