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 { makeExecutableSchema } from 'graphql-tools'; | |
import Airtable from 'airtable'; | |
class AirtableHelper { | |
constructor(apiKey, baseId) { | |
// Init the Airtable integration. | |
this.base = new Airtable({ | |
endpointUrl: 'https://api.airtable.com', | |
apiKey, | |
}).base(baseId); |
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
/* On OSX, place this at ~/Library/Application Support/Flowdock/userstyle.css */ | |
/* Override default flow colors with P2 branding colors */ | |
.flow-tab:nth-child(5n+1) .tab-avatar { | |
background: #fe7900 !important; | |
} | |
.flow-tab:nth-child(5n+2) .tab-avatar { | |
background: #febd3b !important; | |
} | |
.flow-tab:nth-child(5n+3) .tab-avatar { |