For educational reasons I've decided to create my own CA. Here is what I learned.
Lets get some context first.
| using System.Web; | |
| using System.Web.Mvc; | |
| using System.Web.Optimization; | |
| namespace BootstrapSupport | |
| { | |
| public class BootstrapBundleConfig | |
| { | |
| public static void RegisterBundles(BundleCollection bundles) | |
| { |
| DROP TABLE if exists d_date; | |
| CREATE TABLE d_date | |
| ( | |
| date_dim_id INT NOT NULL, | |
| date_actual DATE NOT NULL, | |
| epoch BIGINT NOT NULL, | |
| day_suffix VARCHAR(4) NOT NULL, | |
| day_name VARCHAR(9) NOT NULL, | |
| day_of_week INT NOT NULL, |
This extension was developed as part of the jsonapi module for Drupal.
The JSON API specification is agnostic about how a server implements filtering strategies. In fact, the spec says:
Note: JSON API is agnostic about the strategies supported by a server. The
filterquery parameter can be used as the basis for any number of filtering strategies.