Create a blank document on your dashboard

To create a new document based on a blank template:

mutation createDocument {
	createDocument(input: {
    title: "This is my test document"
    subTitle: "This is my subtitle"
    coverPage: 0
    showCoverPage: false
    colorScheme: Color1
    recipients: [{
      email: "[email protected]"
      firstName: "John"
      lastName: "Smith"
      phone: "0499889988"
      address: "123 Pitt Street Sydney NSW 2000"
    }]
  }) {
    id
    name
    owner
  }
}