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
@mmuflih55 Hi, I am having the same issue. I tried placing some overrides in my project and was not able to get it to work. Have you been able to find a solution to this issue?
@Martin-Kennedy yes, this solution is working for me...
because I didn't get any response. in the end, I create a temporary plugin fix. (I'm not even change the readme)
and change
@mmuflih55 Thanks so much, really appreciate you building out the temp fix module. Worked great!!! Surprised it hasn't been addressed yet since in the discussion regarding keystonjs v5 the announcement stated they would continue with bug fixes and this seems like an obvious bug and a super quick fix... Maybe initiating a PR might make the most sense as it probably just fell off their radar with KS6 out. Either way, thanks again!!!
Bug report
Describe the bug
Cannot change the maxFiles, I think it's because in index.js line 47
const maxFileSize = (this._apollo && this._apollo.maxFileSize) || 200 * 1024 * 1024; const maxFiles = (this._apollo && this._apollo.maxFileSize) || 5;
I think's it's should be
const maxFileSize = (this._apollo && this._apollo.maxFileSize) || 200 * 1024 * 1024; const maxFiles = (this._apollo && this._apollo.maxFiles) || 5;
is it? please Correct me if I'm wrong
To Reproduce
I try to do this at keystone-5 index
new GraphQLApp({ apollo: { config: { maxFiles: 10, }, }, }),
Expected behaviour
Screenshots
System information
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: