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
37 changes: 29 additions & 8 deletions src/schema/blogSchema.js
Original file line number Diff line number Diff line change
Expand Up @@ -442,21 +442,42 @@ type StrapiBlogCategory implements Node {
pageMetadata: StrapiBlogPagePageMetadata
strapiId: Int
title: String
actionCallBanner: StrapiBlogPageActionCallBanner
bannerHead: StrapiBlogPageBannerHead
}
type StrapiBlogPageActionCallBanner {

type StrapiBlogPageBannerHead {
id: Int
title: String
link: StrapiBlogPageActionCallBannerLink
image: LocalFile
imageDarkMode: LocalFile
image: localFile
}

type StrapiBlogPageActionCallBannerLink {
type StrapiBlogPageBannerHeadImage {
id: Int
name: String
pathTo: String
alternativeText: String
caption: String
width: Int
height: Int
formats: StrapiBlogPageBannerHeadImageFormats
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 StrapiBlogPagePageMetadata {
Expand Down