(self, **kwargs)
| 275 | return dashboard_factory.create(**args) |
| 276 | |
| 277 | def create_query(self, **kwargs): |
| 278 | args = {"user": self.user, "data_source": self.data_source, "org": self.org} |
| 279 | args.update(kwargs) |
| 280 | return query_factory.create(**args) |
| 281 | |
| 282 | def create_query_with_params(self, **kwargs): |
| 283 | args = {"user": self.user, "data_source": self.data_source, "org": self.org} |