Skip to main content

CreateSubmissionInput

Provides the fields and values to use when creating a submission.

input CreateSubmissionInput {
name: String
status: ID
receivedAt: Date
processedAt: Date
dueAt: Date
typeId: ID
filePath: String
filesPath: String
description: String
members: SubmissionRelatedMembersInput
contacts: RelatedContactsInput
projects: RelatedProjectsInput
properties: RelatedPropertiesInput
tasks: RelatedTasksInput
letters: RelatedLettersInput
meters: RelatedMetersInput
tags: RelatedTagsInput
copyRelations: CopyRelationsInput
}

Fields

CreateSubmissionInput.name ● String scalar

The submission's name.

CreateSubmissionInput.status ● ID scalar

The submission's status.

CreateSubmissionInput.receivedAt ● Date scalar

Received date of the submission.

CreateSubmissionInput.processedAt ● Date scalar

Processed date of the submission.

CreateSubmissionInput.dueAt ● Date scalar

Due date of the submission.

CreateSubmissionInput.typeId ● ID scalar

The submission's type.

CreateSubmissionInput.filePath ● String scalar

The submission's file path.

CreateSubmissionInput.filesPath ● String scalar

The submission's files path.

CreateSubmissionInput.description ● String scalar

The submission's description.

CreateSubmissionInput.members ● SubmissionRelatedMembersInput input

The submission's members relation.

CreateSubmissionInput.contacts ● RelatedContactsInput input

The submission's contacts relation.

CreateSubmissionInput.projects ● RelatedProjectsInput input

The submission's projects relation.

CreateSubmissionInput.properties ● RelatedPropertiesInput input

The submission's properties relation.

CreateSubmissionInput.tasks ● RelatedTasksInput input

The submission's tasks relation.

CreateSubmissionInput.letters ● RelatedLettersInput input

The submission's letters relation.

CreateSubmissionInput.meters ● RelatedMetersInput input

The submission's meters relation.

CreateSubmissionInput.tags ● RelatedTagsInput input

The submission's tags relation.

CreateSubmissionInput.copyRelations ● CopyRelationsInput input

The relations that should be copied from another entity.

Member Of

createSubmission mutation