This version of graphql-js
introduces a breaking change to the method signature of the resolve()
method.
Previously, resolve()
had this method signature:
type GraphQLResolveInfo = {
fieldName: string,
fieldASTs: Array,
import {getDefaultKeyBinding, KeyBindingUtil} from 'draft-js'; | |
const ViewportShaker = require('ViewportShaker'); | |
const {hasCommandModifier} = KeyBindingUtil; | |
function mapKeyEventsToCommands(e) { | |
const keyCode = e.which; | |
const magnitude = hasCommandModifier(e) ? 300 : 100; | |
switch (keyCode) { | |
case 9: // Tab key |
type Article { | |
author: Profile! | |
body: String! | |
comments(first: Int, after: String): CommentsConnection | |
createdAt: String! | |
description: String! | |
favorited: Boolean! | |
favoritesCount: Int! | |
slug: String! | |
tags: [String], |
#!/bin/bash | |
# Exit if *any* error is encountered | |
set -e | |
lockfile="/tmp/.sa-learn-lock" | |
# Make sure the lockfile exists | |
touch $lockfile | |
( |
class Comment extends React.Component { | |
render() { | |
var {comment} = this.props; | |
var {author} = comment; | |
var savePending = this.props.relay.hasOptimisticUpdate(this.props.comment); | |
return ( | |
<div style={{opacity: savePending ? 0.4 : null}}> | |
<img src={author.avatar} width={16} /> <strong>{author.name}</strong> {comment.text} | |
{savePending && | |
<img src="data:image/gif;base64,R0lGODlhEgASAPMAADMzMw0NDUtLS21tbY+Pj6+vr83Nzf7+/vr6+vPz8+bm5gAAAAAAAAAAAAAAAAAAACH5BAAKAAAAIf8LTkVUU0NBUEUyLjADAQAAACwAAAAAEgASAAAEjPDISauViZiDCkHXpAgDKADKhSSHMghGAZQtOBVDoRACwROZAIGCGwwMvQGgcFpSEAYjQbFyAWCsCQKhKBiyB5xCkUiACMbB8CkIBK4stPSZALgDAts24SUOqBwUOwQ6e20BBRUGPhoFXl52QjZhGlAaMV8DAQMVWR5jjiBkFzuJHQVgIQYbLawhrxURACH5BAAKAAAALAAAAAASABIAgwsLCy0tLWxsbFBQUJGRka6urs7Ozv7+/vn5+fPz8+bm5gAAAAAAAAAAAAAAAAAAAASL8Mh5EKIYo2JqIRmmDAKSDIMSHokkCIZBSso1FfA2EMSeEAHQxPAiEHkDYmBQwBgIAoIKoRAsO5SLoqCSIJ6KhMUT5WUGgfRAwuM1MegAYF2xbLsSXNg22RIKFgkyAAGAFAYfXAUFAwCMAI58TwZfHAIAJUACWTaLW4R2fFmLFpBYKwcGXTiiqF4hEQAh+Q |
<!DOCTYPE html> | |
<html class="no-js"> | |
<head> | |
<script type="text/javascript"> | |
// If JavaScript is enabled, this code will synchronously modify the <html> | |
// element's class attribute, before anything else has a chance to run. | |
document.documentElement.className = document.documentElement.className.replace( | |
/(^|\s)no-js(\s|$)/, | |
'$1js$2' | |
); |
/* | |
* Copyright (C) 2012 Eike Send | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to | |
* deal in the Software without restriction, including without limitation the | |
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | |
* sell copies of the Software, and to permit persons to whom the Software is | |
* furnished to do so, subject to the following conditions: | |
* |
// Knockout JavaScript library v | |
// (c) Steven Sanderson - http://knockoutjs.com/ | |
// License: MIT (http://www.opensource.org/licenses/mit-license.php) | |
(function() {function j(k){throw k;}var n=!0,q=null,v=!1;function J(k){return function(){return k}};(function(k){var z=this||(0,eval)("this"),s=z.document,V=z.navigator,t=z.jQuery,H=z.JSON;!function(k){"function"===typeof require&&"object"===typeof exports&&"object"===typeof module?k(module.exports||exports):"function"===typeof define&&define.amd?define(["exports"],k):k(z.ko={})}(function(A){function sa(a,d,c,e,f){var g=[];a=b.j(function(){var a=d(c,f,O(g))||[];0<g.length&&(b.a.eb(g,a),e&&b.m.w(e,q,[c,a,f]));g.splice(0,g.length);b.a.R(g,a)},q,{Z:a,Qa:function(){return!b.a.pb(g)}});return{N:g,j:a.ua()? | |
a:k}}function O(a){for(;a.length&&!b.a.$(a[0]);)a.splice(0,1);if(1<a.length){for(var d=a[0],c=a[a.length-1],e=[d];d!==c;){d=d.nextSibling;if(!d)return;e.push(d)}Array.prototype.splice.apply(a,[0,a.length].concat(e))}return a}function W(a,b,c,e,f){var g=Math.min,h |
var Faye = (typeof Faye === 'object') ? Faye : {}; | |
if (typeof window !== 'undefined') window.Faye = Faye; | |
Faye.extend = function(dest, source, overwrite) { | |
if (!source) return dest; | |
for (var key in source) { | |
if (!source.hasOwnProperty(key)) continue; | |
if (dest.hasOwnProperty(key) && overwrite === false) continue; | |
if (dest[key] !== source[key]) | |
dest[key] = source[key]; |