See the documentation
Basiliq is a very alpha REST API data-centric server. It aims at reducing the time (sometimes wasted) invested in writing CRUD operations. It respects the established JSON:API specifications. Written in Rust, it tries to conciliate performance with stability.
Or if you're really in a hurry, you could try out the API already deployed on Heroku.
For instance:
```sh
curl 'http://demo.basiliq.io/public__peoples'
curl 'http://demo.basiliq.io/publicpeoples?include=publicarticles,publiccomments&fields[publiccomments]='
```
One can install basiliq through docker. An example docker-compose
script is available at the root of the repository. To start it:
```sh
docker-compose -f docker-compose.example.yml up -d
curl -L https://gitlab.com/basiliqio/basiliqdbtestutils/-/jobs/artifacts/main/raw/basiliqtest.dump\?job\=packtestmigrations | PGHOST=localhost PGUSER=postgres PGPASS=postgres psql
docker-compose -f docker-compose.example.yml restart basiliq
docker-compose -f docker-compose.example.yml down ```
In the future, there should be a way to generate an OpenApi document to view exactly how the API is accessible.
The API response respects the JSON:API specifications.
By default, the endpoint are exposed in the format schema__table
(i.e. for a table peoples
in the public
schema, the endpoint would be public__table
).
By modifying the configuration one could change how those endpoints are exposed.
Creating request
Notice the lack of id in the request.
Also, in the response, the fields that were not included are set to their default
```http POST /public__peoples HTTP/1.1 Host: demo.basiliq.io User-Agent: curl/7.76.1 Content-Type:application/vnd.api+json Accept: application/json, / Content-Length: 174
{ "data": { "type": "public_peoples", "attributes": { "first-name": "Somebody", "last-name": "Oncetoldmethe_world", "gender": "F", "twitter": "@allstars" } } }
HTTP/1.1 201 Created Connection: keep-alive Content-Type: application/vnd.api+json Content-Length: 224 Date: Sun, 02 May 2021 20:20:52 GMT
{ "jsonapi": { "version": "1.0" }, "data": { "type": "public_peoples", "id": "d14e1928-9cae-441c-945d-144ebe6c94c8", "attributes": { "age": null, "first-name": "Somebody", "gender": "F", "last-name": "Oncetoldmethe_world", "twitter": "@allstars" } } } ```
Simple fetching request
```http GET /public__peoples HTTP/1.1 Host: demo.basiliq.io User-Agent: curl/7.76.1 Accept: application/json, /
HTTP/1.1 200 OK Connection: keep-alive Content-Type: application/vnd.api+json Content-Length: 598 Date: Sun, 02 May 2021 20:13:47 GMT
{ "jsonapi": { "version": "1.0" }, "data": [ { "type": "publicpeoples", "id": "1649b1e9-8a5f-4f52-b331-c07ce3bccc6f", "attributes": { "age": 22, "first-name": "Francis", "gender": "M", "last-name": "Le Roy", "twitter": null } }, { "type": "publicpeoples", "id": "777cc565-c66b-4942-ab44-8fc5f194b804", "attributes": { "age": 34, "first-name": "Somebody", "gender": "F", "last-name": "Wuhu", "twitter": "@randomhandle" } }, { "type": "public__peoples", "id": "961e543a-4b22-4d48-a8e5-c1eafada950f", "attributes": { "age": null, "first-name": "AAAAAAAA", "gender": null, "last-name": "BBBBBBBBB", "twitter": null } } ] } ```
Fetching requests including relationships and sparsing fields
You can find the attributes of the objects in the relationships
key of each main resource in the included
key below.
Notice that the comments object have only ids, because all of their fields have been un-selected via the fields[public__comments]=
query parameter.
```http GET /publicpeoples?include=publicarticles,publiccomments&fields[publiccomments]= HTTP/1.1 Host: demo.basiliq.io:80 User-Agent: curl/7.76.1 Accept: application/json, /
HTTP/1.1 200 OK content-type: application/vnd.api+json content-length: 1879 date: Sun, 02 May 2021 20:08:12 GMT
{ "jsonapi": { "version": "1.0" }, "data": [ { "type": "publicpeoples", "id": "1649b1e9-8a5f-4f52-b331-c07ce3bccc6f", "attributes": { "age": 22, "first-name": "Francis", "gender": "M", "last-name": "Le Roy", "twitter": null }, "relationships": { "publicarticles": { "data": [ { "type": "publicarticles", "id": "fdf715dd-8772-498c-8196-6f4ccb64edef" }, { "type": "publicarticles", "id": "2dbf5d1a-b029-4456-af6b-339c75b1089c" } ] }, "publiccomments": { "data": [ { "type": "publiccomments", "id": "59f58abd-c9db-4074-9c34-ac33e9c838ce" }, { "type": "publiccomments", "id": "c2add83b-6f58-45a2-bf62-3ebc05c46192" } ] } } }, { "type": "publicpeoples", "id": "777cc565-c66b-4942-ab44-8fc5f194b804", "attributes": { "age": 34, "first-name": "Somebody", "gender": "F", "last-name": "Wuhu", "twitter": "@randomhandle" }, "relationships": { "publicarticles": { "data": { "type": "publicarticles", "id": "46c4fe50-8c56-4f26-935e-56ccfa496bb5" } }, "publiccomments": { "data": { "type": "publiccomments", "id": "6ae9938f-d490-4707-b138-770c2a52465f" } } } }, { "type": "publicpeoples", "id": "961e543a-4b22-4d48-a8e5-c1eafada950f", "attributes": { "age": null, "first-name": "AAAAAAAA", "gender": null, "last-name": "BBBBBBBBB", "twitter": null } } ], "included": [ { "type": "publicarticles", "id": "2dbf5d1a-b029-4456-af6b-339c75b1089c", "attributes": { "body": "Yeah I know ! Right ?!", "title": "Oh my g**" } }, { "type": "publicarticles", "id": "46c4fe50-8c56-4f26-935e-56ccfa496bb5", "attributes": { "body": "They feast on the blood of the departed draw their powers", "title": "Why devs require sacrifices" } }, { "type": "publicarticles", "id": "fdf715dd-8772-498c-8196-6f4ccb64edef", "attributes": { "body": "Yes", "title": "How to dead" } }, { "type": "publiccomments", "id": "59f58abd-c9db-4074-9c34-ac33e9c838ce" }, { "type": "publiccomments", "id": "6ae9938f-d490-4707-b138-770c2a52465f" }, { "type": "public__comments", "id": "c2add83b-6f58-45a2-bf62-3ebc05c46192" } ] } ```
Updating request
Notice that attributes that were not included in the PATCH
request are not nulled.
```http PATCH /public__peoples/777cc565-c66b-4942-ab44-8fc5f194b804 HTTP/1.1 Host: demo.basiliq.io User-Agent: curl/7.76.1 Content-Type:application/vnd.api+json Accept: application/json, / Content-Length: 204
{ "data": { "type": "public__peoples", "id": "777cc565-c66b-4942-ab44-8fc5f194b804", "attributes": { "first-name": "NotTheOriginalFirstName", "last-name": "NotTheOriginalLastName" } } }
HTTP/1.1 200 OK Connection: keep-alive Content-Type: application/vnd.api+json Content-Length: 260 Date: Sun, 02 May 2021 20:24:50 GMT
{ "jsonapi": { "version": "1.0" }, "data": { "type": "public__peoples", "id": "777cc565-c66b-4942-ab44-8fc5f194b804", "attributes": { "age": 34, "first-name": "NotTheOriginalFirstName", "gender": "F", "last-name": "NotTheOriginalLastName", "twitter": "@randomhandle" } } }
```
Deleting request
```http DELETE /public__peoples/777cc565-c66b-4942-ab44-8fc5f194b804 HTTP/1.1 Host: demo.basiliq.io User-Agent: curl/7.76.1 Accept: application/json, /
HTTP/1.1 200 OK Connection: keep-alive Content-Type: application/vnd.api+json Content-Length: 41 Date: Sun, 02 May 2021 20:25:54 GMT
{ "jsonapi": { "version": "1.0" }, "data": null } ```
Typically, one would first need to create a configuration, however this is not mandatory to run basiliq.
To create a configuration, one can use :
sh
basiliq config generate
It would generate a file called basiliq_config.yaml
in the current working directory.
This file would look like the following :
resources: # The list of resources
publicarticles: # The name of a resource. It can be changed
target: # The identifier object of the resource
schema: public # The schema this resource is bound to in the database
table: articles # The name of the table bound to this resource
enabled: true # true
if this resource is enabled
relationships: # A list of relationships
publiccomments: # Name of the relationship. It can be changed
target: # The identifier object of the resource
schema: public # The schema this relationship's resource is bound to in the database
table: comments # The name of the table bound to this relationship's resource
enabled: true # true
if this relationship is enabled
field: article # The field on which this relationship is bound
public__peoples:
target:
schema: public
table: peoples
through: # For Many-to-Many relationships identify the bucket table
schema: public # The schema of the bucket resource
table: comments # The table of the bucket resource
field: author # The field on which that this relationship's resource is bound to the bucket resource
enabled: true
field: id
[...]
```
After having generated the configuration, one might need to ensure its correct.
One could do that with the following command:
sh
basiliq config check --input basiliq_config.yaml