Creating a GraphQL Rails, React, Relay application
run rails new APP_NAME --webpack=react --database=postgresql --skip-test --skip-coffee
react-rails
to Gemfilegraphql
to Gemfilebundle install
rails g graphql:install
rails g react:install
yarn add react-relay@^1.0.0
yarn add relay-compiler@^1.0.0 babel-plugin-relay@^1.0.1 --dev
<%= javascript_pack_tag 'application' %>
to app/views/layouts/application.html.erb
<%= stylesheet_pack_tag 'application' %>
to app/views/layouts/application.html.erb
app/javascript/packs/hello_react.jsx
to app/javascript/components/hello_react.jsx
modify the generated GraphQL schema file which should be under app/graphql/app_name_schema.rb
AppNameSchema = GraphQL::Schema.define do
query(Types::QueryType)
end
module RelaySchemaHelpers
# Schema.json location
SCHEMA_DIR = Rails.root.join('app/javascript/packs/')
SCHEMA_PATH = File.join(SCHEMA_DIR, 'schema.json')
def execute_introspection_query
# Cache the query result
Rails.cache.fetch checksum do
AppNameSchema.execute GraphQL:
:INTROSPECTION_QUERY
end
end
def checksum
files = Dir['app/graphql/**/*.rb'].reject { |f| File.directory?(f) }
content = files.map { |f| File.read(f) }.join
Digest::SHA256.hexdigest(content).to_s
end
def dump_schema
# Generate the schema on start/reload
FileUtils.mkdir_p SCHEMA_DIR
result = JSON.pretty_generate(AppNameSchema.execute_introspection_query)
unless File.exist?(SCHEMA_PATH) && File.read(SCHEMA_PATH) == result
File.write(SCHEMA_PATH, result)
end
end
end
AppNameSchema.extend RelaySchemaHelpers
Add the following to .babelrc
[
"relay",
{
"schema": "app/javascript/packs/schema.json",
"debug": true
}
],
add __generated__/
to .gitignore
create a Procfile
with the following contents
web: bundle exec puma -t 5:5 -p ${PORT:-3000} -e ${RACK_ENV:-development}
relay: yarn run relay -- --watch
webpacker: ./bin/webpack-dev-server
add the following as a script in package.json
"relay": "relay-compiler --src ./app/javascript --schema ./app/javascript/packs/schema.json"
hello_react
component
<%= react_component 'hello_react' %>