OBJECT
DriveTimeResult
types.drive_time_result
link GraphQL Schema definition
- type DriveTimeResult {
- # The starting latitude.
- : Latitude!
- # The starting longitude.
- : Longitude!
- # The ending latitude.
- : Latitude!
- # The ending longitude.
- : Longitude!
- # The amount of time it takes to drive from the start to the end, in minutes.
- : Int
- # Whether the drive time lookup succeeded.
- : Boolean!
- # If the drive time lookup failed, the error that was provided.
- : Text
- }