> ## 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.

# DragAndDropOptions

Input options for the 'dragAndDrop' mutation.

## Definition

```graphql theme={null}
input DragAndDropOptions {
  force: Boolean
  sourcePosition: PointOptions
  targetPosition: PointOptions
  timeout: Int
}
```

## Fields

### `force`

[Boolean](/reference/graphql/scalars/boolean)

Whether to bypass normal actionability checks for both source and target. Defaults to false.

### `sourcePosition`

[PointOptions](/reference/graphql/inputs/point-options)

Specific point, relative to the source element's top-left corner, to start the drag from.

### `targetPosition`

[PointOptions](/reference/graphql/inputs/point-options)

Specific point, relative to the target element's top-left corner, to drop onto.

### `timeout`

[Int](/reference/graphql/scalars/int)

Maximum time in milliseconds to wait for elements to be actionable. Defaults to a global timeout.
