- HTML & markup in the web browser
- JavaScript & the DOM API - Web IDL, Webcore
- DOM tree, event API
- Design patterns for data/view consistency
- One-way data flow and binding
Mutation: { | |
editIssue: async (_, { input }, ctx) => { | |
if (!ctx.user) | |
throw new GraphQLError('UNAUTHORIZED', { extensions: { code: 401 } }) | |
const { id, ...update } = input | |
const result = await db | |
.update(issues) | |
.set(update ?? {}) |
/* Change the box-sizing so we don't have issues calculating the width */ | |
* { | |
box-sizing: inherit; | |
} | |
html { | |
box-sizing: border-box; | |
font-size: 16px; | |
} |
Below are examples, links, and resources from our one-on-one training sessions
Resources
Resources