We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e162730 commit 22fe98fCopy full SHA for 22fe98f
docs/examples/python/use-query-args.py
@@ -7,6 +7,6 @@ def example_query(value: int, other_value: bool = False): ...
7
8
@component
9
def my_component():
10
- query = use_query(example_query, kwargs={"value": 123, "other_value": True})
+ query = use_query(example_query, {"value": 123, "other_value": True})
11
12
return str(query.data)
0 commit comments