> ## Documentation Index
> Fetch the complete documentation index at: https://docs.extractbase.com/llms.txt
> Use this file to discover all available pages before exploring further.

# DragOperation

Defines the type of operation to be performed during a drag-and-drop action. This is not directly used in current mutations but is available for potential future extensions related to advanced drag-and-drop simulations.

## Definition

```graphql theme={null}
enum DragOperation {
  COPY
  LINK
  MOVE
}
```

## Values

### `COPY`

The dragged data will be copied to the target.

### `LINK`

A link or reference to the dragged data will be created at the target.

### `MOVE`

The dragged data will be moved from the source to the target.
