You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In source file plugin-graphql/blob/master/src/graphql/query-builder.ts, function name buildQuery(...). I don't think this uppcaseFirstLetter(name) should be used here. It appears to be changing a value set by a custom adapter.
In source file plugin-graphql/blob/master/src/graphql/query-builder.ts, function name buildQuery(...). I don't think this uppcaseFirstLetter(name) should be used here. It appears to be changing a value set by a custom adapter.
// build query const query: string = \
${type} ${upcaseFirstLetter(name)}${this.buildArguments(model,
args,
true,
filter,
true,
field
)} {\n` +
` ${this.buildField(model, multiple, args, [], name, filter, true)}\n` +
}
;`
Impacts using a custom adapter to set the name of a mutation with getNameforPersit(model).
The text was updated successfully, but these errors were encountered: