Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions src/schema/caseSchema.js
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,10 @@ type StrapiCase implements Node {
width: Int
height: Int
}

type LocalFile {
localFile: File @link(from: "localFile___NODE")
}
`

module.exports = {
Expand Down
4 changes: 4 additions & 0 deletions src/schema/generalSchema.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ type LocalFile {
): Date
formats: StrapiBlogCategoryArticleAuthorImageFormats
}

type LocalFile {
localFile: File @link(from: "localFile___NODE")
}
`

module.exports = {
Expand Down
4 changes: 4 additions & 0 deletions src/schema/globalSeoSchema.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ type StrapiGlobalConfig implements Node {
enable: Boolean
src: String
}

type LocalFile {
localFile: File @link(from: "localFile___NODE")
}
`
module.exports = {
value: globalSeoSchema,
Expand Down
4 changes: 4 additions & 0 deletions src/schema/homeSchema.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ type StrapiHome implements Node {
pageKeywords: String
}

type LocalFile {
localFile: File @link(from: "localFile___NODE")
}

`
module.exports = {
value: homeSchema,
Expand Down
4 changes: 4 additions & 0 deletions src/schema/iconSchema.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ type StrapiIcon implements Node {
): Date
localFile: File
}

type LocalFile {
localFile: File @link(from: "localFile___NODE")
}
`
module.exports = {
value: iconScheme,
Expand Down
4 changes: 4 additions & 0 deletions src/schema/landingSchema.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ type StrapiLandingPage implements Node {
pageDescription: String
pageKeywords: String
}

type LocalFile {
localFile: File @link(from: "localFile___NODE")
}
`
module.exports = {
value: landingSchema,
Expand Down
4 changes: 4 additions & 0 deletions src/schema/layoutSchema.js
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,10 @@ type StrapiLayoutFooter {
navbar: StrapiLayoutNavbar
strapiId: Int
}

type LocalFile {
localFile: File @link(from: "localFile___NODE")
}
`
module.exports = {
value: layoutSchema,
Expand Down