Skip to content

Harium/postgrest-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Releases

No releases published

Packages

No packages published

Languages