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")
- String! :
- # The text that shows for the link (ex: "Dashboard" or "Task List")
- String! :
- # These sublinks are displaying when the user clicks the parent link
- AppNavSubLinkType!] : [
- # The url that the link goes to
- String :
- }