When converting a filter selection to a query, there is a hard-coded reference to species.id
|
- (NSDictionary *)queryParams { |
|
if ([self active]) { |
|
return @{ @"species.id": @{ @"IS": speciesId }}; |
|
} else { |
|
return [NSDictionary dictionary]; |
|
} |
|
} |
Other filters read their field identifier dynamically from the instance info API response. Species should not be an exception.