Video: https://www.youtube.com/watch?v=kMMybKqC2Y0
-
Each AWS region contains multiple availability zones
-
Each availability zone has got its own networking domain, power domain, cooling subsystems
Video: https://www.youtube.com/watch?v=kMMybKqC2Y0
Each AWS region contains multiple availability zones
Each availability zone has got its own networking domain, power domain, cooling subsystems
| echo -n <variable> | gcloud kms encrypt --plaintext-file=- --ciphertext-file=- --location=global --keyring <keyring> --key <key> | base6 | |
| 4 |
| const createResolver = (resolver) => { | |
| const baseResolver = resolver; | |
| baseResolver.createResolver = (childResolver) => { | |
| const newResolver = async (parent, args, context, info) => { | |
| await resolver(parent, args, context, info); | |
| return childResolver(parent, args, context, info); | |
| }; | |
| return createResolver(newResolver); | |
| }; | |
| return baseResolver; |
Client makes a request from the browser which then goes to the server to fetch some resources. The server is a really complex thing that does all the logic handling, computations and provides us with the things that we eventually want to show on the website. That covers authorization, authentication and interaction with the database. Authentication
I have found a collection of blogs that will help you understand it. The links are as follows: