Type alias SearchRoutesBetweenPositionsQuery

SearchRoutesBetweenPositionsQuery: {
    __typename?: "Query";
    routes: {
        __typename: "RouteConnection";
        routes: {
            __typename?: "Route";
            segments: {
                __typename?: "RouteSegment";
                distance?: number | null;
                duration?: number | null;
                polyline?: string | null;
            }[];
        }[];
    };
}

Type declaration

  • Optional __typename?: "Query"
  • routes: {
        __typename: "RouteConnection";
        routes: {
            __typename?: "Route";
            segments: {
                __typename?: "RouteSegment";
                distance?: number | null;
                duration?: number | null;
                polyline?: string | null;
            }[];
        }[];
    }
    • __typename: "RouteConnection"
    • routes: {
          __typename?: "Route";
          segments: {
              __typename?: "RouteSegment";
              distance?: number | null;
              duration?: number | null;
              polyline?: string | null;
          }[];
      }[]

Generated using TypeDoc