データエクスプローラーで空のパラメータ値を許可するには?

フィルタリングステップをオプションにしたいのですが、query フィールドを空にするとエラーが発生します。

---[params]
--- string :query = '%'
select uh.details 
from user_histories uh
where uh.details like case 
      when :query is not null then '%' || :query || '%'
      else '%'
      end
limit 5

エラー: DataExplorer::ValidationError: Missing parameter query of type string

「いいね!」 3