mirror of
https://github.com/rjNemo/graphql-file_upload
synced 2026-06-06 02:16:44 +00:00
6 lines
188 B
Python
6 lines
188 B
Python
from ariadne import MutationType
|
|
|
|
from app.file.mutations.upload import mutate_upload_user_image
|
|
|
|
Mutation = MutationType()
|
|
Mutation.set_field("uploadUserImage", mutate_upload_user_image)
|