OBJECT

AppNavLinkType

A single parent link in the navigation sidebar that consists of an icon, link text, url, and its sublinks

link GraphQL Schema definition

  • type AppNavLinkType {
  • # The name of the icon associated with the link (ex: "faUser")
  • iconName: String!
  • # The text that shows for the link (ex: "Dashboard" or "Task List")
  • linkText: String!
  • # These sublinks are displaying when the user clicks the parent link
  • sublinks: [AppNavSubLinkType!]
  • # The url that the link goes to
  • url: String
  • }