- GraphQL Formation was formed - https://gql.foundation/
- Apollo GraphQL "Platform" was launched - https://blog.apollographql.com/introducing-the-apollo-graphql-platform-8ef34bb269e5
- New tutorial for deploying a full stack GraphQL client/server with more than "hello world" features, now available - https://www.apollographql.com/docs/tutorial/introduction.html
- Prevent Breaking Changes in a GraphQL API with GitHub Checks - https://github.com/cap-collectif/graphql-doctor
xuorig
is worth following twitter / GitHub- this post was a subset of his presentation - https://medium.com/@__xuorig__/backend-for-frontends-optimized-server-adapters-and-graphql-eb7c0c591c82?%24identity_id=562373521595240637
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
const { execute, introspectionQuery, parse } = require('graphql'); | |
const { schema } = require('../index'); | |
describe('graphql', () => { | |
describe('index', () => { | |
describe('schema', () => { | |
it('should be a an object', () => { | |
expect(typeof schema).toBe('object'); | |
}); |
I hereby claim:
- I am m14t on github.
- I am m14t (https://keybase.io/m14t) on keybase.
- I have a public key whose fingerprint is 1FCA DAF1 05CD E9D7 5A50 45CC A084 7AFA D4D1 6422
To claim this, I am signing this object:
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 | |
#-- Script to automate https://help.github.com/articles/why-is-git-always-asking-for-my-password | |
REPO_URL=`git remote -v | grep -m1 '^origin' | sed -Ene's#.*(https://[^[:space:]]*).*#\1#p'` | |
if [ -z "$REPO_URL" ]; then | |
echo "-- ERROR: Could not identify Repo url." | |
echo " It is possible this repo is already using SSH instead of HTTPS." | |
exit | |
fi |