This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo -n "GitHub User: " | |
read USER | |
echo -n "GitHub Password: " | |
read -s PASS | |
echo "" | |
echo -n "GitHub Repo (e.g. foo/bar): " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
/** | |
* This module extends the graphql.js schema and types by adding diff and merge functions. | |
*/ | |
(function () { | |
const GraphQLSchema = require('graphql/type/schema').GraphQLSchema, | |
GraphQLObjectType = require('graphql/type/definition').GraphQLObjectType, | |
GraphQLScalarType = require('graphql/type/definition').GraphQLScalarType, | |
GraphQLUnionType = require('graphql/type/definition').GraphQLUnionType, |