From 273924062ad0caa7a9a930cd45e68b484baa27cf Mon Sep 17 00:00:00 2001 From: Yang Date: Sat, 29 Aug 2026 23:57:50 +1000 Subject: [PATCH] Update schema to use `ID` scalar. --- src/main/resources/schema/kstreamlined.graphqls | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/resources/schema/kstreamlined.graphqls b/src/main/resources/schema/kstreamlined.graphqls index ae54b7e..9935b8a 100644 --- a/src/main/resources/schema/kstreamlined.graphqls +++ b/src/main/resources/schema/kstreamlined.graphqls @@ -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." @@ -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." @@ -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." @@ -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." @@ -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."