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
54 changes: 53 additions & 1 deletion src/schema/blogSchema.js
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ type StrapiBlogCategory implements Node {
type StrapiBlogPageBannerHead {
id: Int
title: String
image: localFile
image: LocalFile
}

type StrapiBlogPageBannerHeadImage {
Expand Down Expand Up @@ -479,6 +479,58 @@ type StrapiBlogCategory implements Node {
): Date
localFile: File
}

type StrapiBlogPageBannerHeadImageFormats {
large: StrapiBlogPageBannerHeadImageFormatsLarge
small: StrapiBlogPageBannerHeadImageFormatsSmall
medium: StrapiBlogPageBannerHeadImageFormatsMedium
thumbnail: StrapiBlogPageBannerHeadImageFormatsThumbnail
}

type StrapiBlogPageBannerHeadImageFormatsLarge {
ext: String
url: String
hash: String
mime: String
name: String
size: Float
width: Int
height: Int
}

type StrapiBlogPageBannerHeadImageFormatsSmall {
ext: String
url: String
hash: String
mime: String
name: String
size: Float
width: Int
height: Int
}

type StrapiBlogPageBannerHeadImageFormatsMedium {
ext: String
url: String
hash: String
mime: String
name: String
size: Float
width: Int
height: Int
}

type StrapiBlogPageBannerHeadImageFormatsThumbnail {
ext: String
url: String
hash: String
mime: String
name: String
size: Float
width: Int
height: Int
}


type StrapiBlogPagePageMetadata {
id: Int
Expand Down