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
url
Describe the bug the imageCreate mutation still accepts URL when only path should be affected
path
To Reproduce query:
mutation imageCreate { imageCreate( input: { url: "https://upload.wikimedia.org/wikipedia/commons/6/66/SMPTE_Color_Bars.svg" } ) { id } }
error:
{ "errors": [ { "message": "Missing URL or file", "path": [ "imageCreate" ] } ], "data": { "imageCreate": null } }
stash-box-config.yml
... image_backend: file image_location: /images
Expected behavior GQL imageCreate should be updated to omit URL input instead of responding with a misleading error message
URL
Additional context confirmed by infinite in discord
I can try to poke around the GQL myself and submit a PR
The text was updated successfully, but these errors were encountered:
remove URL from imageCreate stashapp#727
f9fdd62
Successfully merging a pull request may close this issue.
Describe the bug
the imageCreate mutation still accepts URL when only
path
should be affectedTo Reproduce
query:
error:
stash-box-config.yml
Expected behavior
GQL imageCreate should be updated to omit
URL
input instead of responding with a misleading error messageAdditional context
confirmed by infinite in discord
I can try to poke around the GQL myself and submit a PR
The text was updated successfully, but these errors were encountered: