MCPcopy Create free account
hub / github.com/dagger/dagger / load_function_call_from_id

Method load_function_call_from_id

sdk/python/src/dagger/client/gen.py:13433–13439  ·  view source on GitHub ↗

Load a FunctionCall from its ID.

(self, id: FunctionCallID)

Source from the content-addressed store, hash-verified

13431 return FunctionCallArgValue(_ctx)
13432
13433 def load_function_call_from_id(self, id: FunctionCallID) -> FunctionCall:
13434 """Load a FunctionCall from its ID."""
13435 _args = [
13436 Arg("id", id),
13437 ]
13438 _ctx = self._select("loadFunctionCallFromID", _args)
13439 return FunctionCall(_ctx)
13440
13441 def load_function_from_id(self, id: FunctionID) -> Function:
13442 """Load a Function from its ID."""

Callers

nothing calls this directly

Calls 3

ArgClass · 0.90
_selectMethod · 0.80
FunctionCallClass · 0.70

Tested by

no test coverage detected