MRQueryFilter Class Reference

Inherits from NSObject
Declared in MRQueryFilter.h

Overview

Represents a filter to be applied to a request for data from Meridian servers. Only objects that match the specified criteria will be included in the results.

  field

The field to filter against.

@property (nonatomic, copy, nonnull) NSString *field

Declared In

MRQueryFilter.h

  value

The value to filter for.

@property (nonatomic, copy, nonnull) NSString *value

Declared In

MRQueryFilter.h

+ filterWithField:value:

Constructs a filter on the specified field with the value provided.

+ (MRQueryFilter *_Nonnull)filterWithField:(NSString *_Nonnull)field value:(NSString *_Nonnull)value

Parameters

field

The field to use when applying this filter.

value

The value to filter for.

Declared In

MRQueryFilter.h