Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 995 Bytes

README.md

File metadata and controls

29 lines (25 loc) · 995 Bytes

PostgREST-java

CircleCI Maven Central

A Java client for PostgREST.

Features

Supports basic operations: INSERT, UPSERT, DELETE. Most of the Horizontal Filtering features are also implemented.

Example

PostgrestClient client = new PostgrestClient("localhost:3000").withHttps(false);
client.insert("table", Insert.row().column("email", "[email protected]").column("name", "The User"));
System.out.println(client.findAll("table"));
client.delete("table", Condition.eq("id", 1));

Not implemented yet

  • Full Text search
  • Casting
  • Ordering
  • Limits and Pagination
  • Count
  • Singular or Plural
  • Custom Queries
  • Stored Procedures
  • Binary Output
  • OpenAPI Support