last question of the day (hopefully): I'm assuming...
# ask-community
c
last question of the day (hopefully): I'm assuming no, but is there a way to use
AssetSelection
with wildcards or regex? I'm trying to do something like
AssetSelection.groups("foo") & AssetSelection.keys("bar/*")
s
hey Charlie - not yet, but here's the issue where we're tracking this: https://github.com/dagster-io/dagster/issues/7310 you can also implement your own AssetSelection by overriding this:
Copy code
@abstractmethod
    def resolve_inner(self, asset_graph: AssetGraph) -> AbstractSet[AssetKey]:
        raise NotImplementedError()