Doing a LIKE query in elgg_get_entities_from_metadata.

Hello. I'm trying to do a search that returns the groups that have an specific word in their name.

For example, if i have this groups:
 - Culture in France
 - Culture in Spain
 - Gastronomy in Spain

A search by "Spain" will return the second and third groups.

I'm trying this code:

$params = array(
    'metadata_names' => 'universal_categories',
    'types' => 'group',
    'limit' => '10000',
    'metadata_name_value_pairs' => array('name' => 'name', 'value' => '%'.$query.'%', 'operand' => 'LIKE')
);
$objects = elgg_get_entities_from_metadata($params);

But it doesn't work. How can I do this?

Regards.