自分で答えを見つけたので、自分の質問に答えます。 Spring Data MongoDBドキュメントの次のセクションには、Springがクエリの派生に使用するサポートされているすべてのキーワードがリストされています。
http://docs。 spring.io/spring-data/mongodb/docs/current/reference/html/#repository-query-keywords
次の実装は、上記のユースケースで機能します。
@Repository
public interface QuestionRepository extends MongoRepository<Question, String> {
List<Question> findByTagsIn(List<String> tags);
}