Count all occurences on a particular field (default on created_at) by a particular period, starting from the first occurence to now.

settings Params

Param name Description
field optional . Must be one of: created_at, updated_at.

The date field to graph on. Default to created_at.

interval optional . Must be one of: day, week, month, quarter, year, hour_of_day, day_of_week, day_of_month, month_of_year.

The interval to graph by. Default to month_of_year.

sort optional . Must be one of: id, name, identifier, created_at, updated_at.

The sort field. Sorted by id desc by default.

Example:

To sort on languages on the fields created_at on a descending order and updated_at on a ascending order:

...&sort=-created_at,updated_at

filter optional . Must be one of: id, name, identifier, created_at, updated_at.

Filtering on one or more fields

Example:

To filter on languages with the id field matching a_value or another_value:

...&filter[id]=a_value,another_value

Filterable fields:
  • id (standard field)
  • name (standard field)
  • identifier (standard field)
  • created_at (standard field)
  • updated_at (standard field)
range optional . Must be one of: id, name, identifier, created_at, updated_at.

Select on a particular range

Example:

To range on languages with the updated_at field between min_value and max_value:

...&range[updated_at]=min_value,max_value

Rangeable fields:
  • id
  • name
  • identifier
  • created_at
  • updated_at