Using Blueprints

Finding Blueprints

When searching for journeys you can apply a filter to only look for results of the type BlueprintJourney. This allows you to use any combination of origin and destination to see if there's a matching Blueprint available.

Origin and destination has to match

Only an exact match of origin and destination will yield a BlueprintJourney result.

Example: Get all Blueprints from Copenhagen to Prague
graphql
query GetBlueprintJourneys {
  getJourneys(
    origin: "jOYDyOgW"
    destination: "5BZEWWng"
    date: "2024-07-08"
    filter: { type: [BLUEPRINT] }
  ) {
    id
    status
    itinerary {
      ... on SegmentCollection {
        segments {
          departureAt
          identifiers
        }
      }
    }
  }
}
query GetBlueprintJourneys {
  getJourneys(
    origin: "jOYDyOgW"
    destination: "5BZEWWng"
    date: "2024-07-08"
    filter: { type: [BLUEPRINT] }
  ) {
    id
    status
    itinerary {
      ... on SegmentCollection {
        segments {
          departureAt
          identifiers
        }
      }
    }
  }
}

Get Specific Blueprint

If you know on beforehand the exact Blueprint that you are looking for you can get it directly by its id using getJourneyForBlueprint.

Example: Get Blueprint by id
graphql
query GetBlueprintJourney {
  getJourneyForBlueprint(
    blueprint: "9fd0f62d-97db-45f3-9619-07043a3e654c"
    date: "2024-07-08"
  ) {
    id
    status
    itinerary {
      ... on SegmentCollection {
        segments {
          departureAt
          identifiers
        }
      }
    }
  }
}
query GetBlueprintJourney {
  getJourneyForBlueprint(
    blueprint: "423b9ef7-b7e0-463f-8334-0e68dd418454"
    date: "2024-07-08"
  ) {
    id
    status
    itinerary {
      ... on SegmentCollection {
        segments {
          departureAt
          identifiers
        }
      }
    }
  }
}