Remove nested operations from GraphQL API (#5931)
* Remove nested operations * Improve error log * Fix bug schema to load * Fix ParseGraphQLSchema tests * Fix tests * Fix failing tests * Rename call to callCloudCode
This commit is contained in:
committed by
Antoine Cormouls
parent
47d1a74ac0
commit
ee5aeeaff5
@@ -47,7 +47,9 @@ class ParseGraphQLServer {
|
||||
},
|
||||
};
|
||||
} catch (e) {
|
||||
this.log.error(e);
|
||||
this.log.error(
|
||||
e.stack || (typeof e.toString === 'function' && e.toString()) || e
|
||||
);
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user