Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions src/schema/schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -1241,9 +1241,78 @@ type StrapiLayoutFooter {
location: StrapiLayoutFooterLocation
contact: StrapiLayoutFooterContact
internalLink: StrapiLayoutFooterInternalLink
navbar: StrapiLayoutNavbar
logo: LocalFile
}


type StrapiLayoutNavbar {
id: Int
navbarItem: [StrapiLayoutNavbarNavbarItem]
logo: StrapiLayoutNavbarLogo
}

type StrapiLayoutNavbarNavbarItem {
id: Int
label: String
landing: StrapiLayoutNavbarNavbarItemLanding
url: String
visible: Boolean
dropdown: Boolean
}

type StrapiLayoutNavbarNavbarItemLanding {
id: Int
name: String
slug: String
published_at(
formatString: String
fromNow: Boolean
difference: String
locale: String
): Date
created_at(
formatString: String
fromNow: Boolean
difference: String
locale: String
): Date
updated_at(
formatString: String
fromNow: Boolean
difference: String
locale: String
): Date
}

type StrapiLayoutNavbarLogo {
id: Int
name: String
alternativeText: String
caption: String
width: Int
height: Int
hash: String
ext: String
mime: String
size: Float
url: String
provider: String
created_at(
formatString: String
fromNow: Boolean
difference: String
locale: String
): Date
updated_at(
formatString: String
fromNow: Boolean
difference: String
locale: String
): Date
localFile: File
}

type StrapiLayoutFooterSubscription {
id: Int
title: String
Expand Down