We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62e04ba commit c758405Copy full SHA for c758405
packages/integrations/gei-crud/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "gei-crud",
3
- "version": "0.9.4",
+ "version": "0.9.5",
4
"description": "GraphQL Editor integration for stucco. Allows basic crud operations and relations.",
5
"main": "lib/index.js",
6
"private": false,
packages/integrations/gei-crud/src/Mutation/createObjects.ts
@@ -22,7 +22,7 @@ export const createObjects = async (input: FieldResolveInput & Partial<DataInput
22
}
23
24
25
- const objects = objectsToUpdate?.map(async (object) => {
+ const objects = objectsToUpdate?.map((object) => {
26
27
return {
28
...object,
0 commit comments