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
type Actor { | |
type: ActorType! | |
uid: String! | |
} | |
# actor type | |
enum ActorType { | |
WALL | |
USER | |
CLIENT_BOT |
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
{ | |
"__schema": { | |
"description": null, | |
"queryType": { | |
"name": "Query" | |
}, | |
"mutationType": { | |
"name": "Mutation" | |
}, | |
"subscriptionType": { |
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
{ | |
"__schema": { | |
"description": null, | |
"queryType": { | |
"name": "Query" | |
}, | |
"mutationType": { | |
"name": "Mutation" | |
}, | |
"subscriptionType": { |
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
import React from "react"; | |
import { observable } from "mobx"; | |
import { isWeb } from "../core/helpers"; | |
import { Alert as NativeAlert, StyleSheet } from "react-native"; | |
import { | |
Card, | |
Text, | |
View, | |
Header, | |
Content, |
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
import * as React from 'react' | |
import * as css from 'csstips' | |
import { style } from 'typestyle' | |
import { classes } from './utils' | |
import { CLIENT_RENEG_LIMIT } from 'tls' | |
const defaultSpacing = 10 | |
export const FlexContainer = props => { | |
if (!props.children) { |
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
var express = require('express'); | |
var app = express(); | |
var passport = require('passport') | |
, BearerStrategy = require('passport-http-bearer').Strategy; | |
app.use(passport.initialize()); | |
passport.serializeUser(function(user, done) { | |
done(null, user); | |
}); |
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
<style scoped lang="less"> | |
@import "../../styles/variables.less"; | |
.select-container { | |
position: relative; | |
width: 210px; | |
&.invalid { | |
button { | |
border: 1px solid @color_error!important; |
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
Searching: /search?q=clothing | |
[ | |
{ tag: 'hat', count:15 }, | |
{ tag: 'scarf', count:4 }, | |
{ tag: 'shoes', count:5 }, | |
] | |
Related tagsTag /related?tag=clothing | |
[ |
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
/* eslint-disable */ | |
/* | |
I wanted to remove all dependancies, and update to firebase v3 | |
Forked from: https://github.com/PulsarBlow/aurelia-firebase/blob/master/dist/es6/configuration.js | |
*/ | |
export class ReactiveCollection { | |
_query = null; |