Last updated

What's a route

Represents a route to either a Category, a Product, a Page or the StartPage.

This is the channel graph schema.

type Route {
  id: String!
  path: String!
  canonicalPath: String
  slug: String!
  object: Document
  parents: [Route]
  alternateRoutes: [AlternateRoute] 
  debug: String
  breadcrumbs: [String]
}

We have a guide available for route here