Applications are groupings of assets based on a particular purpose, similar to domains and data products.
For more information on what an Application is, and how it differs from other concepts, refer to [About DataHub Applications](/docs/features/feature-guides/applications.md).
### Goal Of This Guide
This guide will show you how to
- Create an application.
- Read the application attached to a dataset.
- Add a dataset to an application
- Remove the application from a dataset.
## Prerequisites
For this tutorial, you need to deploy DataHub Quickstart and ingest sample data.
For detailed steps, please refer to [Datahub Quickstart Guide](/docs/quickstart.md).
## Create Application
<Tabs>
<TabItemvalue="graphql"label="GraphQL"default>
```json
mutation createApplication {
createApplication(
input: {
properties: {
name: "My New Application"
description: "An optional description"
}
}
)
}
```
If you see the following response, the operation was successful: