* feat: wip implement back-end call csv import * fix: rebase IconBrandTwitter missing * feat: person and company csv import * fix: test & clean * fix: clean & test
10 lines
207 B
TypeScript
10 lines
207 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const INSERT_MANY_COMPANY = gql`
|
|
mutation InsertManyCompany($data: [CompanyCreateManyInput!]!) {
|
|
createManyCompany(data: $data) {
|
|
count
|
|
}
|
|
}
|
|
`;
|