We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18a7cac commit 2616608Copy full SHA for 2616608
2 files changed
examples/direct/ball/raw_data_example.py
@@ -44,7 +44,7 @@
44
id
45
startTime
46
endTime
47
- ballDataRecordings {
+ ballDataRecordings(withData: true) {
48
49
url(format: json)
50
ball { id serialNumber }
examples/pydantic/queries/session_ball_data.py
@@ -13,7 +13,7 @@ def session_ball_data(session_id: str):
13
SessionInterface.id,
14
SessionInterface.start_time,
15
SessionInterface.end_time,
16
- SessionInterface.ball_data_recordings().fields(
+ SessionInterface.ball_data_recordings(with_data=True).fields(
17
BallDataRecordingFields.id,
18
BallDataRecordingFields.url(format=DatafileFormat.json),
19
BallDataRecordingFields.ball().fields(
0 commit comments