We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Write other if any:
When I use
"options": { "validateUpsert": true, "injectOptionsFromRemoteContext": true }
in my model json file, the builder generates the relation query functions with duplicate of "options" argument
public getOwner(id: any, options: any = {}, refresh: any = {}, options: any = {}): Observable<any> { let _method: string = "GET"; let _url: string = LoopBackConfig.getPath() + "/" + LoopBackConfig.getApiVersion() + "/Groups/:id/owner"; let _routeParams: any = { id: id }; let _postBody: any = {}; let _urlParams: any = {}; if (refresh) _urlParams.refresh = refresh; let result = this.request(_method, _url, _routeParams, _urlParams, _postBody); return result; }
The text was updated successfully, but these errors were encountered:
Hi @tobibrandenberg this is a known issue and is already reported in here #310
I will close this issue in favor of 310
Cheers Jon
Sorry, something went wrong.
No branches or pull requests
What type of issue are you creating?
What version of this module are you using?
Write other if any:
Please add a description for your issue:
When I use
in my model json file, the builder generates the relation query functions with duplicate of "options" argument
The text was updated successfully, but these errors were encountered: