c92938eff3
* main changes seem to be done? * lint fix * minor cleanup * dataloader clear
26 lines
533 B
TypeScript
26 lines
533 B
TypeScript
import gql from 'graphql-tag'
|
|
|
|
export const createProjectVersionMutation = gql`
|
|
mutation CreateProjectVersion($input: CreateVersionInput!) {
|
|
versionMutations {
|
|
create(input: $input) {
|
|
id
|
|
message
|
|
sourceApplication
|
|
model {
|
|
id
|
|
}
|
|
referencedObject
|
|
}
|
|
}
|
|
}
|
|
`
|
|
|
|
export const markProjectVersionReceivedMutation = gql`
|
|
mutation MarkProjectVersionReceived($input: MarkReceivedVersionInput!) {
|
|
versionMutations {
|
|
markReceived(input: $input)
|
|
}
|
|
}
|
|
`
|