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
10 changes: 5 additions & 5 deletions src/main/resources/schema/kstreamlined.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ enum FeedSourceKey {

interface FeedEntry {
"Unique id of the feed entry."
id: String!
id: ID!
"Title of the feed entry."
title: String!
"Publish time of the feed entry in ISO 8601."
Expand All @@ -45,7 +45,7 @@ interface FeedEntry {

type KotlinBlog implements FeedEntry {
"Unique id of the feed entry."
id: String!
id: ID!
"Title of the feed entry."
title: String!
"Publish time of the feed entry in ISO 8601."
Expand All @@ -60,7 +60,7 @@ type KotlinBlog implements FeedEntry {

type KotlinYouTube implements FeedEntry {
"Unique id of the feed entry."
id: String!
id: ID!
"Title of the feed entry."
title: String!
"Publish time of the feed entry in ISO 8601."
Expand All @@ -75,7 +75,7 @@ type KotlinYouTube implements FeedEntry {

type TalkingKotlin implements FeedEntry {
"Unique id of the feed entry."
id: String!
id: ID!
"Title of the feed entry."
title: String!
"Publish time of the feed entry in ISO 8601."
Expand All @@ -94,7 +94,7 @@ type TalkingKotlin implements FeedEntry {

type KotlinWeekly implements FeedEntry {
"Unique id of the feed entry."
id: String!
id: ID!
"Title of the feed entry."
title: String!
"Publish time of the feed entry in ISO 8601."
Expand Down