Skip to content

Instantly share code, notes, and snippets.

@kespinola
kespinola / .neutrino.js
Created July 9, 2018 14:24
relay starter neutrino config
const FlowWebpackPlugin = require("flow-webpack-plugin");
const PUBLIC_PATH = process.env.PUBLIC_PATH || "http://localhost:5000/";
module.exports = {
use: [
[
"neutrino-preset-react",
{
babel: {
@kespinola
kespinola / graphQL Sample Query
Last active September 13, 2016 02:03
A sample user query in graphql
{
user(id:22) {
name,
picture{
width
height
uri
}
}
}