Documentation
    Preparing search index...
    type UpdateAnnotationMeasurementMutation = {
        __typename?: "Mutation";
        updateMeasurementAnnotationV2:
            | { __typename: "AnnotationErrorEntityNotFoundOutput" }
            | { __typename: "AnnotationErrorOperationNotAllowedOutput" }
            | {
                __typename: "MeasurementAnnotationOutput";
                createdAt: Date;
                createdBy: {
                    __typename?: "SimpleUserProfileOutput";
                    deleted: boolean;
                    firstName?: string | null;
                    id: string;
                    lastName?: string | null;
                    profilePictureUrl?: string | null;
                };
                data: {
                    __typename?: "MeasurementAnnotationDataOutput";
                    lookAt: {
                        __typename?: "AnnotationOrientationOutput";
                        distance: number;
                        pitch: number;
                        ref: {
                            __typename?: "AnnotationPointOutput";
                            x: number;
                            y: number;
                            z: number;
                        };
                        roll: number;
                        yaw: number;
                    };
                    measurementType: Types.MeasurementAnnotationEnum;
                    points: {
                        __typename?: "AnnotationPointOutput";
                        x: number;
                        y: number;
                        z: number;
                    }[];
                };
                description?: string
                | null;
                id: string;
                modifiedAt: Date;
                modifiedBy: {
                    __typename?: "SimpleUserProfileOutput";
                    deleted: boolean;
                    firstName?: string | null;
                    id: string;
                    lastName?: string | null;
                    profilePictureUrl?: string | null;
                };
                thumbnailPath?: string
                | null;
                title: string;
            };
    }
    Index

    Properties

    __typename?: "Mutation"
    updateMeasurementAnnotationV2:
        | { __typename: "AnnotationErrorEntityNotFoundOutput" }
        | { __typename: "AnnotationErrorOperationNotAllowedOutput" }
        | {
            __typename: "MeasurementAnnotationOutput";
            createdAt: Date;
            createdBy: {
                __typename?: "SimpleUserProfileOutput";
                deleted: boolean;
                firstName?: string | null;
                id: string;
                lastName?: string | null;
                profilePictureUrl?: string | null;
            };
            data: {
                __typename?: "MeasurementAnnotationDataOutput";
                lookAt: {
                    __typename?: "AnnotationOrientationOutput";
                    distance: number;
                    pitch: number;
                    ref: {
                        __typename?: "AnnotationPointOutput";
                        x: number;
                        y: number;
                        z: number;
                    };
                    roll: number;
                    yaw: number;
                };
                measurementType: Types.MeasurementAnnotationEnum;
                points: {
                    __typename?: "AnnotationPointOutput";
                    x: number;
                    y: number;
                    z: number;
                }[];
            };
            description?: string
            | null;
            id: string;
            modifiedAt: Date;
            modifiedBy: {
                __typename?: "SimpleUserProfileOutput";
                deleted: boolean;
                firstName?: string | null;
                id: string;
                lastName?: string | null;
                profilePictureUrl?: string | null;
            };
            thumbnailPath?: string
            | null;
            title: string;
        }