class Kentico::Kontent::Delivery::QueryParameters::Filter

Provides the base class for filter implementations. See developer.kenticocloud.com/v1/reference#content-filtering

Public Class Methods

new(key, operator, values) click to toggle source

Constructor.

  • Args:

    • key (string) The field to filter upon

    • operator (string) The Kentico Kontent filter being applied to the field, in brackets

    • values (Object) One or more values which will appear as the value of the query string parameter

Calls superclass method
# File lib/delivery/query_parameters/filters.rb, line 16
def initialize(key, operator, values)
  super(key, operator, values)
end