Skip to content

Commit 99f68b4

Browse files
committed
feat: add field featureImageAlt
1 parent 09bffee commit 99f68b4

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

packages/ghost-graphql/src/types/GhostPage.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ const GhostPage = new GraphQLObjectType({
2525
emailSubject: { type: GraphQLString },
2626
excerpt: { type: GraphQLString },
2727
featureImage: { type: GraphQLString },
28+
featureImageAlt: { type: GraphQLString },
2829
html: { type: GraphQLString },
2930
id: { type: new GraphQLNonNull(GraphQLString) },
3031
metaDescription: { type: GraphQLString },

packages/ghost-graphql/src/types/GhostPost.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ const GhostPost = new GraphQLObjectType({
2525
emailSubject: { type: GraphQLString },
2626
excerpt: { type: GraphQLString },
2727
featureImage: { type: GraphQLString },
28+
featureImageAlt: { type: GraphQLString },
2829
html: { type: GraphQLString },
2930
id: { type: new GraphQLNonNull(GraphQLString) },
3031
metaDescription: { type: GraphQLString },

packages/ghost-graphql/src/types/GhostTag.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const GhostTag = new GraphQLObjectType({
1212
count: { type: GhostPostsCount },
1313
description: { type: GraphQLString },
1414
featureImage: { type: GraphQLString },
15+
featureImageAlt: { type: GraphQLString },
1516
id: { type: new GraphQLNonNull(GraphQLString) },
1617
metaDescription: { type: GraphQLString },
1718
metaTitle: { type: GraphQLString },

0 commit comments

Comments
 (0)