apollo_upload_server-ruby icon indicating copy to clipboard operation
apollo_upload_server-ruby copied to clipboard

Results 12 apollo_upload_server-ruby issues
Sort by recently updated
recently updated
newest added
trafficstars

I am writing a mutation that that includes file upload and spec fails throwing the error below `[{"extensions"=>{"problems"=>[{"explanation"=>"#\", \"content_type\"=>\"image/jpeg\"} permitted: false> is not a valid upload)"}]`. I dug a bit...

I'm trying to upgrade from 2.0.1 to 2.0.3. There was a check added in `coerce_input` that force the value to be of a certain type. My tests work fine prior...

With apollo_upload_server 2.0.4 and 2.0.5, in 2.0.3 version this works good

ActiveStorage accept `ActionDispatch::Http::UploadedFile` generally, see https://github.com/rails/rails/blob/master/activestorage/lib/active_storage/attached.rb#L18 , but uploaded file type is `ApolloUploadServer::Wrappers:: UploadedFile`, it is not accepted by ActiveStorage.

#### Problem Currently, when uploading files to an association's record using the `ApolloUploadServer::Upload` type, the old files are removed, which may not be the desired behavior for all use cases....

I'm in the process of upgrading an app from 2.0.1 to 2.1.5 and all the tests we have involving uploaded files are now failing with an "# is not a...