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. MRPlacemarkRequest examples: [MRQueryFilter filterWithField:@“name” value:@“xxx”], [MRQueryFilter filterWithField:@“category_ids” value:@“1234”, “5678”] When using multiple filters, comma separated values are evaluated as OR.
  field
	The field to filter against. For MRPlacemarkRequest, the supported filters are category_ids, custom_1, custom_2, custom_3, custom_4, hide_on_map, is_facility, map, name, related_map, type, type_category and uid.
@property (nonatomic, copy, nonnull) NSString *fieldDeclared In
MRQueryFilter.h
  value
	The value to filter for.
@property (nonatomic, copy, nonnull) NSString *valueDeclared 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)valueParameters
field | 
						The field to use when applying this filter.  | 
					
|---|---|
value | 
						The value to filter for.  | 
					
Declared In
MRQueryFilter.h