Documentation
    Preparing search index...

    Type Alias CreateFolderMutation

    type CreateFolderMutation = {
        __typename?: "Mutation";
        createFolderV2:
            | { __typename: "FolderErrorDuplicateNameOutput" }
            | { __typename: "FolderErrorNameBlacklistedCharactersOutput" }
            | { __typename: "FolderErrorNameBlankOutput" }
            | { __typename: "FolderErrorNameForbiddenOutput" }
            | { __typename: "FolderErrorNameForwardSlashOutput" }
            | { __typename: "FolderErrorNameLeadingOrTrailingSpaceOutput" }
            | { __typename: "FolderErrorNameTrailingDotOutput" }
            | { __typename: "FolderErrorNameTwoDotsInRowOutput" }
            | { __typename: "FolderErrorOperationNotAllowedOutput" }
            | { __typename: "FolderErrorResourceAccessDeniedOutput" }
            | { __typename: "FolderErrorTooManyRequestsOutput" }
            | {
                __typename: "FolderOutput";
                assetCount: number;
                createdAt?: Date | null;
                description?: string | null;
                id: string;
                includedAssetsSummary: {
                    __typename?: "GroupedAssetResultOutput";
                    contents: {
                        __typename?: "GroupedAssetOutput";
                        id: string;
                        thumbnailPath?: string | null;
                    }[];
                    total: number;
                };
                includedFoldersSummary: {
                    __typename?: "FolderResultOutput";
                    total: number;
                };
                isNestingLevelReached?: boolean
                | null;
                modifiedAt?: Date | null;
                name: string;
                nestingLevel?: number | null;
                parentFolder?:
                    | {
                        __typename?: "FolderOutput";
                        id: string;
                        name: string;
                        nestingLevel?: number
                        | null;
                        parentFolder?:
                            | {
                                __typename?: "FolderOutput";
                                id: string;
                                name: string;
                                nestingLevel?: number
                                | null;
                                parentFolder?:
                                    | {
                                        __typename?: "FolderOutput";
                                        id: string;
                                        name: string;
                                        nestingLevel?: number
                                        | null;
                                        parentFolder?:
                                            | {
                                                __typename?: ...;
                                                id: ...;
                                                name: ...;
                                                nestingLevel?: ...;
                                                parentFolder?: ...;
                                            }
                                            | null;
                                    }
                                    | null;
                            }
                            | null;
                    }
                    | null;
            };
    }
    Index

    Properties

    __typename?: "Mutation"
    createFolderV2:
        | { __typename: "FolderErrorDuplicateNameOutput" }
        | { __typename: "FolderErrorNameBlacklistedCharactersOutput" }
        | { __typename: "FolderErrorNameBlankOutput" }
        | { __typename: "FolderErrorNameForbiddenOutput" }
        | { __typename: "FolderErrorNameForwardSlashOutput" }
        | { __typename: "FolderErrorNameLeadingOrTrailingSpaceOutput" }
        | { __typename: "FolderErrorNameTrailingDotOutput" }
        | { __typename: "FolderErrorNameTwoDotsInRowOutput" }
        | { __typename: "FolderErrorOperationNotAllowedOutput" }
        | { __typename: "FolderErrorResourceAccessDeniedOutput" }
        | { __typename: "FolderErrorTooManyRequestsOutput" }
        | {
            __typename: "FolderOutput";
            assetCount: number;
            createdAt?: Date | null;
            description?: string | null;
            id: string;
            includedAssetsSummary: {
                __typename?: "GroupedAssetResultOutput";
                contents: {
                    __typename?: "GroupedAssetOutput";
                    id: string;
                    thumbnailPath?: string | null;
                }[];
                total: number;
            };
            includedFoldersSummary: {
                __typename?: "FolderResultOutput";
                total: number;
            };
            isNestingLevelReached?: boolean
            | null;
            modifiedAt?: Date | null;
            name: string;
            nestingLevel?: number | null;
            parentFolder?:
                | {
                    __typename?: "FolderOutput";
                    id: string;
                    name: string;
                    nestingLevel?: number
                    | null;
                    parentFolder?:
                        | {
                            __typename?: "FolderOutput";
                            id: string;
                            name: string;
                            nestingLevel?: number
                            | null;
                            parentFolder?:
                                | {
                                    __typename?: "FolderOutput";
                                    id: string;
                                    name: string;
                                    nestingLevel?: number
                                    | null;
                                    parentFolder?:
                                        | {
                                            __typename?: ...;
                                            id: ...;
                                            name: ...;
                                            nestingLevel?: ...;
                                            parentFolder?: ...;
                                        }
                                        | null;
                                }
                                | null;
                        }
                        | null;
                }
                | null;
        }