Skip to content

Commit 5b3e799

Browse files
committed
release
1 parent 7a54e7d commit 5b3e799

File tree

3 files changed

+4
-13
lines changed

3 files changed

+4
-13
lines changed

lib/GraphQL/ParseGraphQLSchema.js

Lines changed: 2 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse-server",
3-
"version": "4.2.0",
3+
"version": "4.4.0",
44
"description": "An express module providing a Parse-compatible API server",
55
"main": "lib/index.js",
66
"repository": {

src/GraphQL/ParseGraphQLSchema.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -251,13 +251,7 @@ class ParseGraphQLSchema {
251251
}
252252
}
253253
);
254-
this.graphQLSchema = mergeSchemas({
255-
schemas: [
256-
this.graphQLSchemaDirectivesDefinitions,
257-
this.graphQLAutoSchema,
258-
],
259-
mergeDirectives: true,
260-
});
254+
this.graphQLSchema = this.graphQLAutoSchema;
261255
} else if (typeof this.graphQLCustomTypeDefs === 'function') {
262256
this.graphQLSchema = await this.graphQLCustomTypeDefs({
263257
directivesDefinitionsSchema: this.graphQLSchemaDirectivesDefinitions,

0 commit comments

Comments
 (0)