plug_graphql alternatives and similar packages
Based on the "Framework Components" category.
Alternatively, view plug_graphql alternatives based on common mentions on social networks and blogs.
-
ex_admin
ExAdmin is an auto administration package for Elixir and the Phoenix Framework -
phoenix_html
Phoenix.HTML functions for working with HTML strings and templates -
phoenix_ecto
Phoenix and Ecto integration with support for concurrent acceptance testing -
react_phoenix
Make rendering React.js components in Phoenix easy -
absinthe_plug
Plug support for Absinthe, the GraphQL toolkit for Elixir -
phoenix_live_reload
Provides live-reload functionality for Phoenix -
params
Easy parameters validation/casting with Ecto.Schema, akin to Rails' strong parameters. -
phoenix_pubsub_redis
The Redis PubSub adapter for the Phoenix framework -
dayron
A repository `similar` to Ecto.Repo that maps to an underlying http client, sending requests to an external rest api instead of a database -
rummage_phoenix
Full Phoenix Support for Rummage. It can be used for searching, sorting and paginating collections in phoenix. -
phoenix_token_auth
Token authentication solution for Phoenix. Useful for APIs for e.g. single page apps. -
sentinel
DEPRECATED - Phoenix Authentication library that wraps Guardian for extra functionality -
plug_rails_cookie_session_store
Rails compatible Plug session store -
phx_component_helpers
Extensible Phoenix liveview components, without boilerplate -
filterable
Filtering from incoming params in Elixir/Ecto/Phoenix with easy to use DSL. -
multiverse
Elixir package that allows to add compatibility layers via API gateways. -
access pass
provides a full user authentication experience for an API. Includes login,logout,register,forgot password, forgot username, confirmation email and all that other good stuff. Includes plug for checking for authenticated users and macro for generating the required routes. -
scrivener_headers
Scrivener pagination with headers and web linking -
better_params
Cleaner request parameters in Elixir web applications ๐ -
phoenix_pubsub_rabbitmq
RabbitMQ adapter for Phoenix's PubSub layer -
plug_checkup
PlugCheckup provides a Plug for adding simple health checks to your app -
plug_rest
REST behaviour and Plug router for hypermedia web applications in Elixir -
Votex
Implements vote / like / follow functionality for Ecto models in Elixir. Inspired from Acts as Votable gem in Ruby on Rails -
trailing_format_plug
An elixir plug to support legacy APIs that use a rails-like trailing format: http://api.dev/resources.json -
phoenix_html_simplified_helpers
Some helpers for phoenix html( truncate, time_ago_in_words, number_with_delimiter, url_for, current_page? ) -
plug_canonical_host
PlugCanonicalHost ensures that all requests are served by a single canonical host.
Elixir and Phoenix Application Security Platform
Do you think we are missing an alternative of plug_graphql or a related project?
README
GraphQL Plug
plug_graphql
is a Plug integration for the GraphQL Elixir implementation of Facebook's GraphQL.
This Plug allows you to easily mount a GraphQL endpoint in Phoenix. This example project shows you how:
Installation
Make a new Phoenix app, or add it to your existing app.
mix phoenix.new hello_graphql cd hello_graphql
git clone https://github.com/graphql-elixir/hello_graphql_phoenix
Add
plug_graphql
to your list of dependencies and applications inmix.exs
and install the package withmix deps.get
.def application do # Add the application to your list of applications. # This will ensure that it will be included in a release. [applications: [:logger, :plug_graphql]] end def deps do [{:plug_graphql, "~> 0.3.1"}] end
Usage
Define a simple schema in
web/graphql/test_schema.ex
:defmodule TestSchema do def schema do %GraphQL.Schema{ query: %GraphQL.Type.ObjectType{ name: "Hello", fields: %{ greeting: %{ type: %GraphQL.Type.String{}, args: %{ name: %{ type: %GraphQL.Type.String{} } }, resolve: {TestSchema, :greeting} } } } } end def greeting(_, %{name: name}, _), do: "Hello, #{name}!" def greeting(_, _, _), do: "Hello, world!" end
Your
api
pipeline should have this as a minimum:pipeline :api do plug :accepts, ["json"] end
Mount the GraphQL endpoint as follows:
scope "/api" do pipe_through :api forward "/", GraphQL.Plug, schema: {TestSchema, :schema} end
Start Phoenix
mix phoenix.server
Open your browser to
http://localhost:4000/api?query={greeting}
and you should see something like this:{ "data": { "greeting": "Hello, world!" } }
Contributions
This is pretty early days, the GraphQL Elixir ecosystem needs a lot more work to be useful.
However we can't get there without your help, so any questions, bug reports, feedback, feature requests and/or PRs are most welcome!
Acknowledgements
Thanks and appreciation goes to the following contributors for PRs, discussions, answering many questions and providing helpful feedback:
- Daniel Neighman (https://github.com/hassox)
- Chris McCord (https://github.com/chrismccord)
- Aaron Weiker (https://github.com/aweiker)
- James Hiscock (https://github.com/bockit)
Thanks also to everyone who has submitted PRs, logged issues, given feedback or asked questions.