We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f671ee commit 87d158aCopy full SHA for 87d158a
docs/graph/beta/joins.md
@@ -461,13 +461,10 @@ async def main():
461
462
print(f'Result: {result}')
463
#> Result: ReducedMetrics(count=5, sum=200)
464
- # > Result: {'count': 4, 'total': 200}
465
print(f'State total_count: {state.total_count}')
466
#> State total_count: 9
467
- # > State items_processed: 4
468
print(f'State total_sum: {state.total_sum}')
469
#> State total_sum: 275
470
- # > State sum_total: 200
471
```
472
473
_(This example is complete, it can be run "as is" — you'll need to add `import asyncio; asyncio.run(main())` to run `main`)_
0 commit comments