OBJECT
Path
Main type that represents Path catalog data.
link GraphQL Schema definition
- type Path {
- # The unique identifier for a Path in UUID format.
- ID! :
- # The date and time the Path was created in ISO 8601 format.
- DateTime :
- # The Path's description.
- String :
- # Highlights of what you will learn in the Path.
- String :
- # The description of knowledge prerequisite for the Path.
- String :
- # A list of topics related to the Path.
- String] : [
- # The Path's status. Either 'published' or 'retired'.
- String :
- # The Path's title.
- String :
- # The Path's type. Either 'skill', 'conference' or 'certificate'.
- String :
- # The date and time the Path was last updated.
- DateTime :
- # The Path's slug.
- String :
- # A list of all the levels in a Path.
- PathLevel] : [
- }
link Require by
- PathCatalogConnectionA type that describes the return type for the pathCatalog query. Paths can then be accessed via nodes or edges
- PathEdgeA type that describes an edge in the PathConnection. Essentially, a PathEdge is a wrapper object for Path. The only addition is a cursor placed on each record that can be used in subsequent queries to fetch Path records after 'cursor'.