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
Pros | Cons | |
---|---|---|
A robust option that will handle complex scenarios | might require a complex devops infra |
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
Pros | Cons | |
---|---|---|
Easy to implement | Requires to be inside a monorepo | |
Shared workspace for both front and backend is problmatic |
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, | |
mergeSchemas, | |
} from 'graphql-tools'; | |
import { PubSub } from 'graphql-subscriptions'; | |
const simpleSchema = makeExecutableSchema({ | |
typeDefs: ` | |
type Query { | |
_blank: String |
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
(function () { | |
"use strict"; | |
var _theme; | |
var _palettes; | |
angular | |
.module('mdColors',['mdColors']) | |
.config(['$mdThemingProvider', function($mdThemingProvider){ |