1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-21 23:00:50 +03:00

WIP my account page

This commit is contained in:
Quentin Gliech
2023-04-27 12:03:46 +02:00
parent f62d045b8c
commit 574514638e
14 changed files with 272 additions and 224 deletions

View File

@@ -31,7 +31,6 @@ const QUERY = graphql(/* GraphQL */ `
$before: String
) {
user(id: $userId) {
__typename
id
emails(first: $first, after: $after, last: $last, before: $before) {
edges {
@@ -54,12 +53,12 @@ const QUERY = graphql(/* GraphQL */ `
`);
type ForwardPagination = {
first: int;
first: number;
after: string | null;
};
type BackwardPagination = {
last: int;
last: number;
before: string | null;
};