Documentation
    Preparing search index...

    Type Alias UpdateFolderMutation

    type UpdateFolderMutation = {
        __typename?: "Mutation";
        updateFolderV2:
            | { __typename: "FolderErrorDuplicateNameOutput" }
            | { __typename: "FolderErrorNameBlacklistedCharactersOutput" }
            | { __typename: "FolderErrorNameBlankOutput" }
            | { __typename: "FolderErrorNameForbiddenOutput" }
            | { __typename: "FolderErrorNameForwardSlashOutput" }
            | { __typename: "FolderErrorNameLeadingOrTrailingSpaceOutput" }
            | { __typename: "FolderErrorNameTrailingDotOutput" }
            | { __typename: "FolderErrorNameTwoDotsInRowOutput" }
            | { __typename: "FolderErrorOperationNotAllowedOutput" }
            | { __typename: "FolderErrorResourceAccessDeniedOutput" }
            | { __typename: "FolderErrorTooManyRequestsOutput" }
            | {
                __typename: "FolderOutput";
                id: string;
                modifiedAt?: Date | null;
                modifiedBy?:
                    | {
                        __typename?: "SimpleUserProfileOutput";
                        deleted: boolean;
                        email: string;
                        firstName?: string
                        | null;
                        id: string;
                        lastName?: string | null;
                        profilePictureUrl?: string | null;
                    }
                    | null;
                name: string;
            };
    }
    Index

    Properties

    __typename?: "Mutation"
    updateFolderV2:
        | { __typename: "FolderErrorDuplicateNameOutput" }
        | { __typename: "FolderErrorNameBlacklistedCharactersOutput" }
        | { __typename: "FolderErrorNameBlankOutput" }
        | { __typename: "FolderErrorNameForbiddenOutput" }
        | { __typename: "FolderErrorNameForwardSlashOutput" }
        | { __typename: "FolderErrorNameLeadingOrTrailingSpaceOutput" }
        | { __typename: "FolderErrorNameTrailingDotOutput" }
        | { __typename: "FolderErrorNameTwoDotsInRowOutput" }
        | { __typename: "FolderErrorOperationNotAllowedOutput" }
        | { __typename: "FolderErrorResourceAccessDeniedOutput" }
        | { __typename: "FolderErrorTooManyRequestsOutput" }
        | {
            __typename: "FolderOutput";
            id: string;
            modifiedAt?: Date | null;
            modifiedBy?:
                | {
                    __typename?: "SimpleUserProfileOutput";
                    deleted: boolean;
                    email: string;
                    firstName?: string
                    | null;
                    id: string;
                    lastName?: string | null;
                    profilePictureUrl?: string | null;
                }
                | null;
            name: string;
        }