Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
apollo_upload_server
Advanced tools
Middleware which allows you to upload files using graphql-ruby, apollo-upload-client and Ruby on Rails.
Note: this implementation uses v2 of the GraphQL multipart request spec, so you should use apollo-upload-client library >= v7.0.0-alpha.3. If you need support for v1 of the GraphQL multipart request spec, you must use version 1.0.0 of this gem.
Add this line to your application's Gemfile:
gem 'apollo_upload_server', '2.1'
And then execute:
$ bundle
Or install it yourself as:
$ gem install apollo_upload_server
Middleware will be used automatically.
Gem adds custom Upload
type to your GraphQL types.
Use ApolloUploadServer::Upload
type for your file as input field:
input_field :file, ApolloUploadServer::Upload
That's all folks!
The following configuration options are supported:
This can be set on ApolloUploadServer::Middleware
:
ApolloUploadServer::Middleware.strict_mode = true
Doing so ensures that all mapped array values are present in the input. If this
is set to true
, then for following request:
{
"operations": {
"query": "mutation { ... }",
"operationName": "SomeOperation",
"variables": {
"input": { "id": "123", "avatars": [null, null] }
}
}
}
A mapping for variables.input.avatars.0
or variables.input.avatars.1
, will work, but one for
variables.input.avatars.100
will not, and will raise an error.
In strict mode, passing empty destination arrays will always fail.
Bug reports and pull requests are welcome on GitHub at https://github.com/jetruby/apollo_upload_server-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
Tests can be run via bundle exec rspec
.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the ApolloUploadServer project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.
ApolloUploadServer is maintained and founded by JetRuby Agency.
We love open source software! See our projects or contact us to design, develop, and grow your product.
FAQs
Unknown package
We found that apollo_upload_server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.