Files
bodyshop/client/src/graphql/allocations.queries.js
2020-02-10 19:19:48 -08:00

12 lines
236 B
JavaScript

import { gql } from "apollo-boost";
export const INSERT_ALLOCATION = gql`
mutation INSERT_ALLOCATION($alloc: [allocations_insert_input!]!) {
insert_allocations(objects: $alloc) {
returning {
id
}
}
}
`;