This file contains hidden or 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
exports.idGenerator = () => { | |
return ( | |
Math.random() | |
.toString(32) | |
.substr(2) + | |
Math.random() | |
.toString(32) | |
.substr(2) | |
); | |
}; |
This file contains hidden or 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
const { buildASTSchema } = require("graphql"); | |
const { mergeTypeDefs } = require("@graphql-tools/merge"); | |
// schema | |
const mutationOutput = require("./mutationOutput"); | |
const book = require("./types/book"); | |
const chapter = require("./types/chapter"); | |
const genre = require("./types/genre"); | |
const blog = require("./types/blog"); |
This file contains hidden or 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
# Source: https://gist.github.com/0c56f8b8a820198ada44123fa1bf4b60 | |
################################################################ | |
# How To Apply GitOps For Everything Using Crossplane And Flux # | |
# https://youtu.be/dunU2ABitMA # | |
################################################################ | |
# Additional Info: | |
# - eksctl - How to Create and Manage AWS EKS clusters: https://youtu.be/pNECqaxyewQ | |
# - Flux CD v2 With GitOps Toolkit - Kubernetes Deployment And Sync Mechanism: https://youtu.be/R6OeIgb7lUI |
OlderNewer