mu-cl-resources icon indicating copy to clipboard operation
mu-cl-resources copied to clipboard

High-level abstractions for generating generic jsonapi compliant resources configured in Common Lisp.

Results 14 mu-cl-resources issues
Sort by recently updated
recently updated
newest added

`:id:` makes it possible to query for record which have a specific id. The inverse query is not yet possible however. Since there are valid use-cases for this, it would...

The following request `GET /resource-name?filter[attribute-name]=value&page[number]=0` will generate a response that includes the following relationship links: ``` ... { "relationships": { "relationship-name": { "links": { "self": "/resource-name/726650c7842a524c08044c5b78f7d352/links/relationship-name?filter[attribute-name]=value&page[number]=0", "related": "/people/726650c7842a524c08044c5b78f7d352/mandatories" }, },...

When you [include a relationship](https://jsonapi.org/format/#fetching-includes) that doesn't exist the service hangs and times out after a minute with a `504 Gateway time-out` error. Example request: `GET /resource-name?include=non-existing-relationship` According to the...

Currently the service only support kebab case in the property names for the json configuration. For example `resource-base`. We want to also support camel case in these cases, eg: `resourceBase`...

Sometimes it's useful to have rdf:types explicitly declared in property and relation queries. This is implemented, and can be turned on using the parameter *declare-resource-types-p*.

- to use an :or: filter, every part should have the "filter" keyword before. - the documentation did not specify unambiguously that only one set of :or: filters is possible....

When using the `:or:` filter and one of them is a `:uri:` filter, the created query internally will not be correct. e.g. for `filter[:or:][:uri:]=test&filter[:or:][:exact:alias]=test` the query is: ``` SELECT DISTINCT...

I want to be able to configure logging behavior in my docker-compose override file instead of having to change the `domain.lisp` file which is tracked by git most of the...

Similar (but I think less common than) #26 it would be useful if resources linked the creator and editor to the resource being updated or created. I think resources can...

For development and debugging, it would be nice to have a way to see the "execution plan" resources would send to mu-auth, without it actually sending it something like: ```...