diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-11-06 04:10:55 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-11-08 05:04:02 +0900 |
| commit | e0cc2915f22fe74d5be9e8f51d6b73437192e0ba (patch) | |
| tree | e2e27e3cba8b5e7205732eef7b6df9789e83396f /frontend/src/graphql/mutations.graphql | |
| parent | ba1e0c904f810193f25d4f88cc2bb168f1d625fe (diff) | |
| download | feedaka-e0cc2915f22fe74d5be9e8f51d6b73437192e0ba.tar.gz feedaka-e0cc2915f22fe74d5be9e8f51d6b73437192e0ba.tar.zst feedaka-e0cc2915f22fe74d5be9e8f51d6b73437192e0ba.zip | |
feat: Support multi-user
Diffstat (limited to 'frontend/src/graphql/mutations.graphql')
| -rw-r--r-- | frontend/src/graphql/mutations.graphql | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/frontend/src/graphql/mutations.graphql b/frontend/src/graphql/mutations.graphql index 9070118..f919e66 100644 --- a/frontend/src/graphql/mutations.graphql +++ b/frontend/src/graphql/mutations.graphql @@ -50,3 +50,16 @@ mutation MarkFeedUnread($id: ID!) { fetchedAt } } + +mutation Login($username: String!, $password: String!) { + login(username: $username, password: $password) { + user { + id + username + } + } +} + +mutation Logout { + logout +} |
