GraphQL alias for mutations in classConfigs (#6258)

* mutations

* removed duplicate tests
This commit is contained in:
Old Grandpa
2019-12-04 08:38:28 +03:00
committed by Antonio Davi Macedo Coelho de Castro
parent 917c6718fc
commit 6db040bdec
4 changed files with 144 additions and 49 deletions

View File

@@ -296,6 +296,9 @@ class ParseGraphQLController {
create = null,
update = null,
destroy = null,
createAlias = null,
updateAlias = null,
destroyAlias = null,
...invalidKeys
} = mutation;
if (Object.keys(invalidKeys).length) {
@@ -312,6 +315,15 @@ class ParseGraphQLController {
if (destroy !== null && typeof destroy !== 'boolean') {
return `"mutation.destroy" must be a boolean`;
}
if (createAlias !== null && typeof createAlias !== 'string') {
return `"mutation.createAlias" must be a string`;
}
if (updateAlias !== null && typeof updateAlias !== 'string') {
return `"mutation.updateAlias" must be a string`;
}
if (destroyAlias !== null && typeof destroyAlias !== 'string') {
return `"mutation.destroyAlias" must be a string`;
}
} else {
return `"mutation" must be a valid object`;
}
@@ -380,6 +392,9 @@ export interface ParseGraphQLClassConfig {
update: ?boolean,
// delete is a reserved key word in js
destroy: ?boolean,
createAlias: ?String,
updateAlias: ?String,
destroyAlias: ?String,
};
}