(self, **kwargs)
| 300 | return query_result_factory.create(**args) |
| 301 | |
| 302 | def create_visualization(self, **kwargs): |
| 303 | args = {"query_rel": self.create_query()} |
| 304 | args.update(kwargs) |
| 305 | return visualization_factory.create(**args) |
| 306 | |
| 307 | def create_visualization_with_params(self, **kwargs): |
| 308 | args = {"query_rel": self.create_query_with_params()} |