summaryrefslogtreecommitdiffhomepage
path: root/frontend/src/graphql/queries.graphql
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-07-12 23:58:57 +0900
committernsfisis <nsfisis@gmail.com>2025-07-12 23:58:57 +0900
commit756b66b31fd02215fc2d8a30ae263a3bf08a90a6 (patch)
tree245cc37a1d81728260246ae5241eeb8225ec0ddc /frontend/src/graphql/queries.graphql
parentfbe4bff7e8b6a5239c490601436fb3638dc8e13b (diff)
downloadfeedaka-756b66b31fd02215fc2d8a30ae263a3bf08a90a6.tar.gz
feedaka-756b66b31fd02215fc2d8a30ae263a3bf08a90a6.tar.zst
feedaka-756b66b31fd02215fc2d8a30ae263a3bf08a90a6.zip
feat(backend,frontend): add feature to unsubscribe feed
Diffstat (limited to 'frontend/src/graphql/queries.graphql')
-rw-r--r--frontend/src/graphql/queries.graphql5
1 files changed, 5 insertions, 0 deletions
diff --git a/frontend/src/graphql/queries.graphql b/frontend/src/graphql/queries.graphql
index af4ac01..0e96851 100644
--- a/frontend/src/graphql/queries.graphql
+++ b/frontend/src/graphql/queries.graphql
@@ -4,6 +4,7 @@ query GetFeeds {
url
title
fetchedAt
+ isSubscribed
articles {
id
isRead
@@ -22,6 +23,7 @@ query GetUnreadArticles {
feed {
id
title
+ isSubscribed
}
}
}
@@ -37,6 +39,7 @@ query GetReadArticles {
feed {
id
title
+ isSubscribed
}
}
}
@@ -47,6 +50,7 @@ query GetFeed($id: ID!) {
url
title
fetchedAt
+ isSubscribed
articles {
id
guid
@@ -68,6 +72,7 @@ query GetArticle($id: ID!) {
feed {
id
title
+ isSubscribed
}
}
}