heumsi
heumsi
> other paths work besides the same path of the page though right? Right. Okay, I'll wait the time the problem is resolved.
I will add more comments. Sometimes, variables in State require lazy initialization. (Through method calls, etc.) However, currently, it seems that there is only a way to initialize it as...
What to do in this case? ```python class QueryState(BaseState): nodes: List[str] = api.get_nodes() is_loaded: bool = False def refresh_nodes(self) -> None: self.nodes = [] self.is_loaded = False self.nodes = api.get_nodes(self.labels)...
Should I use computed Vars? (However, in this case, it is a little burdensome because there is an external API call inside the computed Var.)
Okay. I will wait. Thanks!