me again! any ideas on how to do a bulk create? ...
# random
m
me again! any ideas on how to do a bulk create?
Copy code
mutation CreateAccount(
    $name: String!,
    $v1Id: Int!,
    $contact: [AccountcontactContact] ) {
		createAccount(
			name: $name
			v1Id: $v1Id,
      contact: $contact
		) {
			id
		}
	}
Variable ‘$contacts’ of type ‘[AccountcontactContact]’ used in position expecting type ‘[AccountcontactContact!]‘. (line 11, column 5):\n $contacts: [AccountcontactContact] ) {\n ^\n (line 15, column 16):\n contact: $contacts\n