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,
"contentValues: alert.actions.title]contentValues_ | |
"contentValues: alert.actions.title_ | |
$contentObjects: alert.actions.action^contentObjects_ | |
$contentObjects: alert.actions.action_ | |
%@/%@/addAppId.action | |
%@/%@/addApplicationGroup.action | |
%@/%@/addDevice.action | |
%@/%@/addOMC.action | |
%@/%@/addOMCsForAppId.action | |
%@/%@/assignApplicationGroupToAppId.action |
/** | |
* Page layout, reused across multiple Page components | |
* @jsx React.DOM | |
*/ | |
var React = require('react'); | |
var ExecutionEnvironment = require('react/lib/ExecutionEnvironment'); | |
var Navigation = require('../components/Navigation.jsx'); | |
var DefaultLayout = React.createClass({ |
#!/bin/bash | |
#### SETUP | |
# 1.) Create a simple point layer | |
curl -X POST -d '{"layer":"geom","lat":"lat","lon":"lon"}' --header "Content-Type:application/json" http://localhost:7474/db/data/ext/SpatialPlugin/graphdb/addSimplePointLayer | |
# 2.) Add a spatial index | |
curl -X POST -d '{"name":"geom","config":{"provider":"spatial","geometry_type":"point","lat":"lat","lon":"lon"}}' --header "Content-Type:application/json" http://localhost:7474/db/data/index/node/ |
db.items.aggregate( | |
{ $group : {_id : "$fieldName", total : { $sum : 1 } } }, | |
$match : { total : { $gte : 2 } } }, | |
$sort : {total : -1} }, | |
$limit : 5 } | |
); |
Curious how Alarm Grid went full site-wide SSL using Spree? Just create the one decorator below and you're good to go!
Note: This gist will not redirect .xml files so that our feeds do not error out on iPhones which do not support RSS feeds in https.
before(function (done) { | |
/** | |
* Mocha is extremely zealous about trapping errors, and runs each test | |
* in a try / catch block. To get the exception to propagate out to the | |
* domain's uncaughtException handler, we need to put the test in an | |
* asynchronous context and break out of the mocha jail. | |
*/ | |
process.nextTick(function () { | |
// disable mocha's error handler | |
mochaHandler = process.listeners('uncaughtException').pop(); |
+ (NSString *)encodeStringWithCoordinates:(NSArray *)coordinates | |
{ | |
NSMutableString *encodedString = [NSMutableString string]; | |
int val = 0; | |
int value = 0; | |
CLLocationCoordinate2D prevCoordinate = CLLocationCoordinate2DMake(0, 0); | |
for (NSValue *coordinateValue in coordinates) { | |
CLLocationCoordinate2D coordinate = [coordinateValue MKCoordinateValue]; | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="http://code.jquery.com/jquery.min.js"></script> | |
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" rel="stylesheet" type="text/css" /> | |
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap.js"></script> | |
<meta charset=utf-8 /> | |
</head> | |
<body> | |
#import <MapKit/MapKit.h> | |
@interface MKPolyline (GMEncodedString) | |
+ (MKPolyline *)polylineWithGMEncodedString:(NSString *)encodedString; | |
@end |