GetTenantUserQuery: {
    __typename?: "NotifiQuery";
    tenantUser?: {
        __typename?: "TenantUserConnection";
        nodes?: ({
            __typename?: "TenantUser";
            alerts?: ({
                __typename?: ...;
                filter: ...;
                filterOptions: ...;
                groupName?: ...;
                id: ...;
                name?: ...;
                sourceGroup: ...;
                targetGroup?: ...;
            } | undefined)[];
            connectedWallets?: ({
                __typename?: ...;
                address?: ...;
                walletBlockchain: ...;
            } | undefined)[];
            id: string;
        } | undefined)[];
        pageInfo: {
            __typename?: "PageInfo";
            endCursor?: string;
            hasNextPage: boolean;
        };
    };
}