> ## Documentation Index
> Fetch the complete documentation index at: https://wundergraphinc-brendan-add-sof-link.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Move

> Moves the monograph from one namespace to another.

## Usage

```bash theme={null}
npx wgc monograph move <name> -n fromNS -t toNS
```

Moving a monograph will also move the single underlying subgraph. No recomposition takes place.

## Description

The `npx wgc monograph move` command allows you to move a monograph into a different namespace.

## Parameters

* `<name>`: The name of the monograph you want to move.

## Options

* `-n, --namespace` : The namespace of the monograph.

* `-t, --to`: The new namespace of the monograph.

## Example

Moves the monograph named "mygraph" into the "production" namespace.

```bash theme={null}
npx wgc monograph move mygraph -n default -t production
```
