Currently, to query a single Atlas Search field, one must use the SearchPath (or Iterable<SearchPath>) methods, such as:
SearchOperator.text(fieldPath("genres"),"Drama")
It'd be more convenient for developers to add String overloaded methods so that this code would be:
SearchOperator.text("genres","Drama")