Injecting Fake Data
Fake Transports
mutation ($user_id: String) {
create_fake_transport(
user_id: $user_id # has to be a valid Sentince ID
mode: CAR
safety_scores: {
overall_safety: 1.0
legal: 1.0
smooth: 1.0
focus: 1.0
call_while_moving: 1.0
},
with_trajectory: true) # the trip will have waypoints for trajectory
{
transport_id # the ID of the injected fake transport
}
}Last updated