Giza.SphinxQL.Recipe.match_and_filter

You're seeing just the function match_and_filter, go back to Giza.SphinxQL.Recipe module for more information.
Link to this function

match_and_filter(query, search_string, filters)

Search on a string and add on as many filters as wanted. This can be used to add simple constraints to a search.

Example

# Show comments for a particular post only by a certain author
iex> SphinxQL.new()
|> SphinxQL.from("blog_comments")
|> SphinxQL.Recipe.match_and_filter("subetei", post_id: 45, author: "Khasar Borjigin")
|> SphinxQL.send()

%SphinxqlResponse{ .. }