12 lines
246 B
JavaScript
12 lines
246 B
JavaScript
import { gql } from "apollo-boost";
|
|
|
|
export const INSERT_NEW_CONTRACT = gql`
|
|
mutation INSERT_NEW_CONTRACT($contract: [cccontracts_insert_input!]!) {
|
|
insert_cccontracts(objects: $contract) {
|
|
returning {
|
|
id
|
|
}
|
|
}
|
|
}
|
|
`;
|