How can i upload file with webix and dotnet core ?

I am using webix as client side and dotnet core with graphql as server side, but i am not able to upload file. can anyone please help ?

Hi @Naufil

By default, Webix Uploader sends a plain POST request with the possibility to add extra FormData and some string values to the query URL (related docs chapter).

If this way o uploading is not suitable for your API, you can alter it with any custom logic, as all selected files are obtainable on the client-side.
This snippet shows a way to get all files that are currently added to the Uploader’s storage:
https://snippet.webix.com/1tf0rhhi

The Uploader will not invoke any request if the url is missing in the settings. However, the explicit property to prevent auto-sending action is autosend: false