You've already forked authentication-service
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:
@@ -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;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user