You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-11-23 11:02:35 +03:00
fetch from app sessions api
This commit is contained in:
committed by
Quentin Gliech
parent
9710bf24d2
commit
87416bb0b0
139
frontend/src/components/UserSessionsOverview/AppSessionsList.tsx
Normal file
139
frontend/src/components/UserSessionsOverview/AppSessionsList.tsx
Normal file
@@ -0,0 +1,139 @@
|
|||||||
|
// Copyright 2022 The Matrix.org Foundation C.I.C.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
import { H6, Text } from "@vector-im/compound-web";
|
||||||
|
import { atom, useAtomValue, useSetAtom } from "jotai";
|
||||||
|
import { atomFamily } from "jotai/utils";
|
||||||
|
import { atomWithQuery } from "jotai-urql";
|
||||||
|
import { useTransition } from "react";
|
||||||
|
|
||||||
|
import { mapQueryAtom } from "../../atoms";
|
||||||
|
import { graphql } from "../../gql";
|
||||||
|
import { SessionState, PageInfo } from "../../gql/graphql";
|
||||||
|
import {
|
||||||
|
atomForCurrentPagination,
|
||||||
|
atomWithPagination,
|
||||||
|
Pagination,
|
||||||
|
} from "../../pagination";
|
||||||
|
import { isOk, unwrap, unwrapOk } from "../../result";
|
||||||
|
import BlockList from "../BlockList";
|
||||||
|
import PaginationControls from "../PaginationControls";
|
||||||
|
|
||||||
|
const QUERY = graphql(/* GraphQL */ `
|
||||||
|
query AppSessionList(
|
||||||
|
$userId: ID!
|
||||||
|
$state: SessionState
|
||||||
|
$first: Int
|
||||||
|
$after: String
|
||||||
|
$last: Int
|
||||||
|
$before: String
|
||||||
|
) {
|
||||||
|
user(id: $userId) {
|
||||||
|
id
|
||||||
|
appSessions(
|
||||||
|
first: $first
|
||||||
|
after: $after
|
||||||
|
last: $last
|
||||||
|
before: $before
|
||||||
|
state: $state
|
||||||
|
) {
|
||||||
|
totalCount
|
||||||
|
|
||||||
|
edges {
|
||||||
|
cursor
|
||||||
|
node {
|
||||||
|
...CompatSession_session
|
||||||
|
...OAuth2Session_session
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pageInfo {
|
||||||
|
hasNextPage
|
||||||
|
hasPreviousPage
|
||||||
|
startCursor
|
||||||
|
endCursor
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`);
|
||||||
|
|
||||||
|
const filterAtom = atom<SessionState | null>(SessionState.Active);
|
||||||
|
const currentPaginationAtom = atomForCurrentPagination();
|
||||||
|
|
||||||
|
const appSessionListFamily = atomFamily((userId: string) => {
|
||||||
|
const appSessionListQuery = atomWithQuery({
|
||||||
|
query: QUERY,
|
||||||
|
getVariables: (get) => ({
|
||||||
|
userId,
|
||||||
|
state: get(filterAtom),
|
||||||
|
...get(currentPaginationAtom),
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
const appSessionList = mapQueryAtom(
|
||||||
|
appSessionListQuery,
|
||||||
|
(data) => data.user?.appSessions || null,
|
||||||
|
);
|
||||||
|
|
||||||
|
return appSessionList;
|
||||||
|
});
|
||||||
|
|
||||||
|
const pageInfoFamily = atomFamily((userId: string) => {
|
||||||
|
const pageInfoAtom = atom(async (get): Promise<PageInfo | null> => {
|
||||||
|
const result = await get(appSessionListFamily(userId));
|
||||||
|
return (isOk(result) && unwrapOk(result)?.pageInfo) || null;
|
||||||
|
});
|
||||||
|
return pageInfoAtom;
|
||||||
|
});
|
||||||
|
|
||||||
|
const paginationFamily = atomFamily((userId: string) => {
|
||||||
|
const paginationAtom = atomWithPagination(
|
||||||
|
currentPaginationAtom,
|
||||||
|
pageInfoFamily(userId),
|
||||||
|
);
|
||||||
|
|
||||||
|
return paginationAtom;
|
||||||
|
});
|
||||||
|
|
||||||
|
const AppSessionsList: React.FC<{ userId: string }> = ({ userId }) => {
|
||||||
|
const [pending, startTransition] = useTransition();
|
||||||
|
const result = useAtomValue(appSessionListFamily(userId));
|
||||||
|
const setPagination = useSetAtom(currentPaginationAtom);
|
||||||
|
const [prevPage, nextPage] = useAtomValue(paginationFamily(userId));
|
||||||
|
|
||||||
|
const appSessions = unwrap(result);
|
||||||
|
if (!appSessions) return <>Failed to load app sessions</>;
|
||||||
|
|
||||||
|
const paginate = (pagination: Pagination): void => {
|
||||||
|
startTransition(() => {
|
||||||
|
setPagination(pagination);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<BlockList>
|
||||||
|
<H6>Apps</H6>
|
||||||
|
<Text>{`${appSessions.totalCount} active sessions`}</Text>
|
||||||
|
<PaginationControls
|
||||||
|
onPrev={prevPage ? (): void => paginate(prevPage) : null}
|
||||||
|
onNext={nextPage ? (): void => paginate(nextPage) : null}
|
||||||
|
count={appSessions.totalCount}
|
||||||
|
disabled={pending}
|
||||||
|
/>
|
||||||
|
</BlockList>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default AppSessionsList;
|
||||||
@@ -19,6 +19,7 @@ import { Link } from "../../routing";
|
|||||||
import Block from "../Block";
|
import Block from "../Block";
|
||||||
import BlockList from "../BlockList";
|
import BlockList from "../BlockList";
|
||||||
|
|
||||||
|
import AppSessionsList from "./AppSessionsList";
|
||||||
import styles from "./UserSessionsOverview.module.css";
|
import styles from "./UserSessionsOverview.module.css";
|
||||||
|
|
||||||
export const FRAGMENT = graphql(/* GraphQL */ `
|
export const FRAGMENT = graphql(/* GraphQL */ `
|
||||||
@@ -78,30 +79,24 @@ const UserSessionsOverview: React.FC<{
|
|||||||
View all
|
View all
|
||||||
</Link>
|
</Link>
|
||||||
</Block>
|
</Block>
|
||||||
<Block className={styles.sessionListBlock}>
|
<div className={styles.sessionListBlockInfo}>
|
||||||
<div className={styles.sessionListBlockInfo}>
|
<H6>compatSessions</H6>
|
||||||
<H6>New apps</H6>
|
|
||||||
<Body>
|
|
||||||
{data.oauth2Sessions.totalCount} active{" "}
|
|
||||||
{pluraliseSession(data.oauth2Sessions.totalCount)}
|
|
||||||
</Body>
|
|
||||||
</div>
|
|
||||||
<Link kind="button" route={{ type: "oauth2-session-list" }}>
|
|
||||||
View all
|
|
||||||
</Link>
|
|
||||||
</Block>
|
|
||||||
<Block className={styles.sessionListBlock}>
|
|
||||||
<div className={styles.sessionListBlockInfo}>
|
|
||||||
<H6>Regular apps</H6>
|
|
||||||
<Body>
|
<Body>
|
||||||
{data.compatSessions.totalCount} active{" "}
|
{data.compatSessions.totalCount} active{" "}
|
||||||
{pluraliseSession(data.compatSessions.totalCount)}
|
{pluraliseSession(data.compatSessions.totalCount)}
|
||||||
</Body>
|
</Body>
|
||||||
</div>
|
</div>
|
||||||
<Link kind="button" route={{ type: "compat-session-list" }}>
|
<div className={styles.sessionListBlockInfo}>
|
||||||
|
<H6>oauth2Sessions</H6>
|
||||||
|
<Body>
|
||||||
|
{data.oauth2Sessions.totalCount} active{" "}
|
||||||
|
{pluraliseSession(data.oauth2Sessions.totalCount)}
|
||||||
|
</Body>
|
||||||
|
<Link kind="button" route={{ type: "oauth2-session-list" }}>
|
||||||
View all
|
View all
|
||||||
</Link>
|
</Link>
|
||||||
</Block>
|
</div>
|
||||||
|
<AppSessionsList userId={data.id} />
|
||||||
</BlockList>
|
</BlockList>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -57,6 +57,8 @@ const documents = {
|
|||||||
types.UserPrimaryEmailDocument,
|
types.UserPrimaryEmailDocument,
|
||||||
"\n mutation SetDisplayName($userId: ID!, $displayName: String) {\n setDisplayName(input: { userId: $userId, displayName: $displayName }) {\n status\n user {\n id\n matrix {\n displayName\n }\n }\n }\n }\n":
|
"\n mutation SetDisplayName($userId: ID!, $displayName: String) {\n setDisplayName(input: { userId: $userId, displayName: $displayName }) {\n status\n user {\n id\n matrix {\n displayName\n }\n }\n }\n }\n":
|
||||||
types.SetDisplayNameDocument,
|
types.SetDisplayNameDocument,
|
||||||
|
"\n query AppSessionList(\n $userId: ID!\n $state: SessionState\n $first: Int\n $after: String\n $last: Int\n $before: String\n ) {\n user(id: $userId) {\n id\n appSessions(\n first: $first\n after: $after\n last: $last\n before: $before\n state: $state\n ) {\n totalCount\n\n edges {\n cursor\n node {\n ...CompatSession_session\n ...OAuth2Session_session\n }\n }\n\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n endCursor\n }\n }\n }\n }\n":
|
||||||
|
types.AppSessionListDocument,
|
||||||
"\n fragment UserSessionsOverview_user on User {\n id\n\n primaryEmail {\n id\n ...UserEmail_email\n }\n\n confirmedEmails: emails(first: 0, state: CONFIRMED) {\n totalCount\n }\n\n browserSessions(first: 0, state: ACTIVE) {\n totalCount\n }\n\n oauth2Sessions(first: 0, state: ACTIVE) {\n totalCount\n }\n\n compatSessions(first: 0, state: ACTIVE) {\n totalCount\n }\n }\n":
|
"\n fragment UserSessionsOverview_user on User {\n id\n\n primaryEmail {\n id\n ...UserEmail_email\n }\n\n confirmedEmails: emails(first: 0, state: CONFIRMED) {\n totalCount\n }\n\n browserSessions(first: 0, state: ACTIVE) {\n totalCount\n }\n\n oauth2Sessions(first: 0, state: ACTIVE) {\n totalCount\n }\n\n compatSessions(first: 0, state: ACTIVE) {\n totalCount\n }\n }\n":
|
||||||
types.UserSessionsOverview_UserFragmentDoc,
|
types.UserSessionsOverview_UserFragmentDoc,
|
||||||
"\n fragment UserEmail_verifyEmail on UserEmail {\n id\n email\n }\n":
|
"\n fragment UserEmail_verifyEmail on UserEmail {\n id\n email\n }\n":
|
||||||
@@ -223,6 +225,12 @@ export function graphql(
|
|||||||
export function graphql(
|
export function graphql(
|
||||||
source: "\n mutation SetDisplayName($userId: ID!, $displayName: String) {\n setDisplayName(input: { userId: $userId, displayName: $displayName }) {\n status\n user {\n id\n matrix {\n displayName\n }\n }\n }\n }\n",
|
source: "\n mutation SetDisplayName($userId: ID!, $displayName: String) {\n setDisplayName(input: { userId: $userId, displayName: $displayName }) {\n status\n user {\n id\n matrix {\n displayName\n }\n }\n }\n }\n",
|
||||||
): (typeof documents)["\n mutation SetDisplayName($userId: ID!, $displayName: String) {\n setDisplayName(input: { userId: $userId, displayName: $displayName }) {\n status\n user {\n id\n matrix {\n displayName\n }\n }\n }\n }\n"];
|
): (typeof documents)["\n mutation SetDisplayName($userId: ID!, $displayName: String) {\n setDisplayName(input: { userId: $userId, displayName: $displayName }) {\n status\n user {\n id\n matrix {\n displayName\n }\n }\n }\n }\n"];
|
||||||
|
/**
|
||||||
|
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
||||||
|
*/
|
||||||
|
export function graphql(
|
||||||
|
source: "\n query AppSessionList(\n $userId: ID!\n $state: SessionState\n $first: Int\n $after: String\n $last: Int\n $before: String\n ) {\n user(id: $userId) {\n id\n appSessions(\n first: $first\n after: $after\n last: $last\n before: $before\n state: $state\n ) {\n totalCount\n\n edges {\n cursor\n node {\n ...CompatSession_session\n ...OAuth2Session_session\n }\n }\n\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n endCursor\n }\n }\n }\n }\n",
|
||||||
|
): (typeof documents)["\n query AppSessionList(\n $userId: ID!\n $state: SessionState\n $first: Int\n $after: String\n $last: Int\n $before: String\n ) {\n user(id: $userId) {\n id\n appSessions(\n first: $first\n after: $after\n last: $last\n before: $before\n state: $state\n ) {\n totalCount\n\n edges {\n cursor\n node {\n ...CompatSession_session\n ...OAuth2Session_session\n }\n }\n\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n endCursor\n }\n }\n }\n }\n"];
|
||||||
/**
|
/**
|
||||||
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -1475,6 +1475,49 @@ export type SetDisplayNameMutation = {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type AppSessionListQueryVariables = Exact<{
|
||||||
|
userId: Scalars["ID"]["input"];
|
||||||
|
state?: InputMaybe<SessionState>;
|
||||||
|
first?: InputMaybe<Scalars["Int"]["input"]>;
|
||||||
|
after?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
|
last?: InputMaybe<Scalars["Int"]["input"]>;
|
||||||
|
before?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
|
}>;
|
||||||
|
|
||||||
|
export type AppSessionListQuery = {
|
||||||
|
__typename?: "Query";
|
||||||
|
user?: {
|
||||||
|
__typename?: "User";
|
||||||
|
id: string;
|
||||||
|
appSessions: {
|
||||||
|
__typename?: "AppSessionConnection";
|
||||||
|
totalCount: number;
|
||||||
|
edges: Array<{
|
||||||
|
__typename?: "AppSessionEdge";
|
||||||
|
cursor: string;
|
||||||
|
node:
|
||||||
|
| ({ __typename?: "CompatSession" } & {
|
||||||
|
" $fragmentRefs"?: {
|
||||||
|
CompatSession_SessionFragment: CompatSession_SessionFragment;
|
||||||
|
};
|
||||||
|
})
|
||||||
|
| ({ __typename?: "Oauth2Session" } & {
|
||||||
|
" $fragmentRefs"?: {
|
||||||
|
OAuth2Session_SessionFragment: OAuth2Session_SessionFragment;
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}>;
|
||||||
|
pageInfo: {
|
||||||
|
__typename?: "PageInfo";
|
||||||
|
hasNextPage: boolean;
|
||||||
|
hasPreviousPage: boolean;
|
||||||
|
startCursor?: string | null;
|
||||||
|
endCursor?: string | null;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
} | null;
|
||||||
|
};
|
||||||
|
|
||||||
export type UserSessionsOverview_UserFragment = {
|
export type UserSessionsOverview_UserFragment = {
|
||||||
__typename?: "User";
|
__typename?: "User";
|
||||||
id: string;
|
id: string;
|
||||||
@@ -3947,6 +3990,269 @@ export const SetDisplayNameDocument = {
|
|||||||
SetDisplayNameMutation,
|
SetDisplayNameMutation,
|
||||||
SetDisplayNameMutationVariables
|
SetDisplayNameMutationVariables
|
||||||
>;
|
>;
|
||||||
|
export const AppSessionListDocument = {
|
||||||
|
kind: "Document",
|
||||||
|
definitions: [
|
||||||
|
{
|
||||||
|
kind: "OperationDefinition",
|
||||||
|
operation: "query",
|
||||||
|
name: { kind: "Name", value: "AppSessionList" },
|
||||||
|
variableDefinitions: [
|
||||||
|
{
|
||||||
|
kind: "VariableDefinition",
|
||||||
|
variable: {
|
||||||
|
kind: "Variable",
|
||||||
|
name: { kind: "Name", value: "userId" },
|
||||||
|
},
|
||||||
|
type: {
|
||||||
|
kind: "NonNullType",
|
||||||
|
type: { kind: "NamedType", name: { kind: "Name", value: "ID" } },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
kind: "VariableDefinition",
|
||||||
|
variable: {
|
||||||
|
kind: "Variable",
|
||||||
|
name: { kind: "Name", value: "state" },
|
||||||
|
},
|
||||||
|
type: {
|
||||||
|
kind: "NamedType",
|
||||||
|
name: { kind: "Name", value: "SessionState" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
kind: "VariableDefinition",
|
||||||
|
variable: {
|
||||||
|
kind: "Variable",
|
||||||
|
name: { kind: "Name", value: "first" },
|
||||||
|
},
|
||||||
|
type: { kind: "NamedType", name: { kind: "Name", value: "Int" } },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
kind: "VariableDefinition",
|
||||||
|
variable: {
|
||||||
|
kind: "Variable",
|
||||||
|
name: { kind: "Name", value: "after" },
|
||||||
|
},
|
||||||
|
type: { kind: "NamedType", name: { kind: "Name", value: "String" } },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
kind: "VariableDefinition",
|
||||||
|
variable: { kind: "Variable", name: { kind: "Name", value: "last" } },
|
||||||
|
type: { kind: "NamedType", name: { kind: "Name", value: "Int" } },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
kind: "VariableDefinition",
|
||||||
|
variable: {
|
||||||
|
kind: "Variable",
|
||||||
|
name: { kind: "Name", value: "before" },
|
||||||
|
},
|
||||||
|
type: { kind: "NamedType", name: { kind: "Name", value: "String" } },
|
||||||
|
},
|
||||||
|
],
|
||||||
|
selectionSet: {
|
||||||
|
kind: "SelectionSet",
|
||||||
|
selections: [
|
||||||
|
{
|
||||||
|
kind: "Field",
|
||||||
|
name: { kind: "Name", value: "user" },
|
||||||
|
arguments: [
|
||||||
|
{
|
||||||
|
kind: "Argument",
|
||||||
|
name: { kind: "Name", value: "id" },
|
||||||
|
value: {
|
||||||
|
kind: "Variable",
|
||||||
|
name: { kind: "Name", value: "userId" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
selectionSet: {
|
||||||
|
kind: "SelectionSet",
|
||||||
|
selections: [
|
||||||
|
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
||||||
|
{
|
||||||
|
kind: "Field",
|
||||||
|
name: { kind: "Name", value: "appSessions" },
|
||||||
|
arguments: [
|
||||||
|
{
|
||||||
|
kind: "Argument",
|
||||||
|
name: { kind: "Name", value: "first" },
|
||||||
|
value: {
|
||||||
|
kind: "Variable",
|
||||||
|
name: { kind: "Name", value: "first" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
kind: "Argument",
|
||||||
|
name: { kind: "Name", value: "after" },
|
||||||
|
value: {
|
||||||
|
kind: "Variable",
|
||||||
|
name: { kind: "Name", value: "after" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
kind: "Argument",
|
||||||
|
name: { kind: "Name", value: "last" },
|
||||||
|
value: {
|
||||||
|
kind: "Variable",
|
||||||
|
name: { kind: "Name", value: "last" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
kind: "Argument",
|
||||||
|
name: { kind: "Name", value: "before" },
|
||||||
|
value: {
|
||||||
|
kind: "Variable",
|
||||||
|
name: { kind: "Name", value: "before" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
kind: "Argument",
|
||||||
|
name: { kind: "Name", value: "state" },
|
||||||
|
value: {
|
||||||
|
kind: "Variable",
|
||||||
|
name: { kind: "Name", value: "state" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
selectionSet: {
|
||||||
|
kind: "SelectionSet",
|
||||||
|
selections: [
|
||||||
|
{
|
||||||
|
kind: "Field",
|
||||||
|
name: { kind: "Name", value: "totalCount" },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
kind: "Field",
|
||||||
|
name: { kind: "Name", value: "edges" },
|
||||||
|
selectionSet: {
|
||||||
|
kind: "SelectionSet",
|
||||||
|
selections: [
|
||||||
|
{
|
||||||
|
kind: "Field",
|
||||||
|
name: { kind: "Name", value: "cursor" },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
kind: "Field",
|
||||||
|
name: { kind: "Name", value: "node" },
|
||||||
|
selectionSet: {
|
||||||
|
kind: "SelectionSet",
|
||||||
|
selections: [
|
||||||
|
{
|
||||||
|
kind: "FragmentSpread",
|
||||||
|
name: {
|
||||||
|
kind: "Name",
|
||||||
|
value: "CompatSession_session",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
kind: "FragmentSpread",
|
||||||
|
name: {
|
||||||
|
kind: "Name",
|
||||||
|
value: "OAuth2Session_session",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
kind: "Field",
|
||||||
|
name: { kind: "Name", value: "pageInfo" },
|
||||||
|
selectionSet: {
|
||||||
|
kind: "SelectionSet",
|
||||||
|
selections: [
|
||||||
|
{
|
||||||
|
kind: "Field",
|
||||||
|
name: { kind: "Name", value: "hasNextPage" },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
kind: "Field",
|
||||||
|
name: { kind: "Name", value: "hasPreviousPage" },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
kind: "Field",
|
||||||
|
name: { kind: "Name", value: "startCursor" },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
kind: "Field",
|
||||||
|
name: { kind: "Name", value: "endCursor" },
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
kind: "FragmentDefinition",
|
||||||
|
name: { kind: "Name", value: "CompatSession_session" },
|
||||||
|
typeCondition: {
|
||||||
|
kind: "NamedType",
|
||||||
|
name: { kind: "Name", value: "CompatSession" },
|
||||||
|
},
|
||||||
|
selectionSet: {
|
||||||
|
kind: "SelectionSet",
|
||||||
|
selections: [
|
||||||
|
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
||||||
|
{ kind: "Field", name: { kind: "Name", value: "createdAt" } },
|
||||||
|
{ kind: "Field", name: { kind: "Name", value: "deviceId" } },
|
||||||
|
{ kind: "Field", name: { kind: "Name", value: "finishedAt" } },
|
||||||
|
{
|
||||||
|
kind: "Field",
|
||||||
|
name: { kind: "Name", value: "ssoLogin" },
|
||||||
|
selectionSet: {
|
||||||
|
kind: "SelectionSet",
|
||||||
|
selections: [
|
||||||
|
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
||||||
|
{ kind: "Field", name: { kind: "Name", value: "redirectUri" } },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
kind: "FragmentDefinition",
|
||||||
|
name: { kind: "Name", value: "OAuth2Session_session" },
|
||||||
|
typeCondition: {
|
||||||
|
kind: "NamedType",
|
||||||
|
name: { kind: "Name", value: "Oauth2Session" },
|
||||||
|
},
|
||||||
|
selectionSet: {
|
||||||
|
kind: "SelectionSet",
|
||||||
|
selections: [
|
||||||
|
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
||||||
|
{ kind: "Field", name: { kind: "Name", value: "scope" } },
|
||||||
|
{ kind: "Field", name: { kind: "Name", value: "createdAt" } },
|
||||||
|
{ kind: "Field", name: { kind: "Name", value: "finishedAt" } },
|
||||||
|
{
|
||||||
|
kind: "Field",
|
||||||
|
name: { kind: "Name", value: "client" },
|
||||||
|
selectionSet: {
|
||||||
|
kind: "SelectionSet",
|
||||||
|
selections: [
|
||||||
|
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
||||||
|
{ kind: "Field", name: { kind: "Name", value: "clientId" } },
|
||||||
|
{ kind: "Field", name: { kind: "Name", value: "clientName" } },
|
||||||
|
{ kind: "Field", name: { kind: "Name", value: "clientUri" } },
|
||||||
|
{ kind: "Field", name: { kind: "Name", value: "logoUri" } },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
} as unknown as DocumentNode<AppSessionListQuery, AppSessionListQueryVariables>;
|
||||||
export const VerifyEmailDocument = {
|
export const VerifyEmailDocument = {
|
||||||
kind: "Document",
|
kind: "Document",
|
||||||
definitions: [
|
definitions: [
|
||||||
|
|||||||
Reference in New Issue
Block a user