Skip to content

Commit

Permalink
Update schema
Browse files Browse the repository at this point in the history
  • Loading branch information
ychescale9 committed Nov 20, 2023
1 parent 8929919 commit eb4e5bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ sealed interface FeedItem {
override val publishTimestamp: String,
override val contentUrl: String,
override val savedForLater: Boolean,
val featuredImageUrl: String,
val featuredImageUrl: String?,
val description: String,
) : FeedItem

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ type KotlinBlog implements FeedEntry {
"""
Url of the feature image.
"""
featuredImageUrl: String!
featuredImageUrl: String

"""
Description of the blog post.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ sealed interface FeedEntry {
override val title: String,
override val publishTimestamp: String,
override val contentUrl: String,
val featuredImageUrl: String,
val featuredImageUrl: String?,
val description: String,
) : FeedEntry

Expand Down

0 comments on commit eb4e5bf

Please sign in to comment.