concrete-datastore icon indicating copy to clipboard operation
concrete-datastore copied to clipboard

A Highly Versatile REST Datastore built on top of Django

Results 27 concrete-datastore issues
Sort by recently updated
recently updated
newest added

# Description of the problem Concrete range / comparaison filters use a method `convert_type` that takes an argument `close_period` (defaults to `True`): For `DateTime` fields, if `close_period` is true, we...

Currently, the datetime filters only accept these two formats: - `YYYY-MM-DD` - `YYYY-MM-DDTHH:mm:ssZ` We should be able to also accept the format with the microseconds `YYYY-MM-DDTHH:mm:ss.xxxxxxZ` with at most 6...

When using concrete date filters (comparaison and range) on the fields `creation_date` and `modification_date`, there is no checks on the the format of the given value. Concrete uses the method...

bug

Closes #53. Not yet finished! To be continued @KhaledBousrih ;)

The `stats` endpoint provides global informations about the requested model ```json { "objects_count": 125, "num_total_pages": 2, "max_allowed_objects_per_page": 100, "timestamp_start": 0.0, "timestamp_end": 701184650.0, "page_urls": { "page1": "https:///api/v1.1/my-model/", "page2": "https:///api/v1.1/my-model/?page=2" } }...

any `.svg` image is currently not managed by `concrete-datastore` . `.svg` is an xml image format, and should be considered as an `image` field, currently, it is only recongized as...

An optional endpoint may be created to distribute the datamodel in order to allow the development of smart clients. Similar to the `/version/` endpoint we may create the `/datamodel/` url....

enhancement

An endpoint should be created to be able to transform an instance in a calendar event. The calendar event should be in the iCalendar (`.ics`) format to be directly imported...