OBJECT
Guide
For more details, see Query.guideCatalog.
link GraphQL Schema definition
- type Guide {
- # The id of the guide.
- ID! :
- # The status of the guide. Possible values are: published, retired.
- GuideStatus! :
- # The pathName for the guide.
- String! :
- # The title for the guide.
- String! :
- # The Search Engine Optimized meta title for the guide. Can be an empty string.
- String! :
- # The Search Engine Optimized meta description for the guide. This can be an empty
- # string
- String! :
- # The UTC time stamp for when the guide was last modified.
- DateTime! :
- # The UTC time stamp for when the first draft of the guide was created.
- DateTime! :
- # The UTC time stamp for the first time the guide was published. This can be null.
- DateTime :
- # The UTC time stamp for the latest time the guide was published (will be
- # different from datePublished if the guide was republished). This can be null.
- DateTime :
- # The id of the author who wrote the guide. This can be null.
- String :
- # The first and last name of the author of the guide.
- String! :
- # The url for the author's profile picture.
- String! :
- # The user ids of the people authorized to edit guides.
- String]! : [
- # The link to the guide in the content tools.
- String! :
- # The contents of the guide in markdown. This can be an empty string.
- String! :
- # The estimated time it will take to read the guide in minutes.
- Int! :
- # The ids from curriculum objectives. This can be an empty array.
- String]! : [
- # The URL where the content lives. All canonicalUrls will be on www unless they
- # are 'gated' (read: Only signed in users can view this), in which case it will be
- # on app. Further, if a guide is not published, the canonicalUrl will be NULL.
- String :
- # True if this content is available to one of the plans associated with they API
- # key being used.
- Boolean! :
- }
link Require by
- GuideCatalogConnectionA type that describes the return type for the guideCatalog query. Guides can then be accessed via nodes or edges
- GuideEdgeA type that describes an edge in the GuideConnection. Essentially, a GuideEdge is a wrapper object for Guide. The only addition is a cursor placed on each record that can be used in subsequent queries to fetch Guide records after 'cursor'.