Skip to content

Instantly share code, notes, and snippets.

View jefelewis's full-sized avatar

Jeff Lewis jefelewis

  • Orange County, CA
View GitHub Profile
@jefelewis
jefelewis / users.json
Created April 3, 2019 18:17
JSON Users
{
"users": [
{
"id": "1",
"firstName": "Kristin",
"lastName": "Smith",
"occupation": "Teacher",
"reviewCount": "6",
"reviewScore": "5",
},
@jefelewis
jefelewis / grapql-express.js
Created July 13, 2018 08:53
grapql-express
// Imports: GraphQL
const graphQL = require('graphql');
// Imports: GraphQL Packages
const {
GraphQLObjectType,
GraphQLString,
GraphQLSchema,
GraphQLInt,
GraphQLID,