Adds a filter to get functions that have a modifier with one of the given names.
Example
from glider import*defquery():# Fetch a list of functions with modifiers from the given list functions =Functions().with_one_of_the_modifier_names(['onlyAdmin','onlyOwner']).exec(10)return functions