aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/graphql/mutations.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/mutations.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/mutations.graphql')
-rw-r--r--frontend/src/graphql/mutations.graphql4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/graphql/mutations.graphql b/frontend/src/graphql/mutations.graphql
index 8bcbcec..9070118 100644
--- a/frontend/src/graphql/mutations.graphql
+++ b/frontend/src/graphql/mutations.graphql
@@ -7,8 +7,8 @@ mutation AddFeed($url: String!) {
}
}
-mutation RemoveFeed($id: ID!) {
- removeFeed(id: $id)
+mutation UnsubscribeFeed($id: ID!) {
+ unsubscribeFeed(id: $id)
}
mutation MarkArticleRead($id: ID!) {