Ember data search

I want to query my Rest API with a search query:

return this.store.find('listingevent', { name: '%' + term + '%s', eventInstanceSlug: slug, Skip: 0, Take:20 });

However - ember seems to be encoding the % characters.

What is the correct way to pass wildcards to my Rest API?

This does in fact work… please ignore