Hier findet ihr eine Zusammenfassung der Vorlesungen + Prüfungsvorbereitung. Diese beschriebt wie man eine Node.js API sowie eine React APP zur Aufgaben (Todo APP) Erstellung entwickelt.
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 http = new HttpLink({ uri: "https://${shopName}/api/graphql", fetch }); | |
| const link = setContext((request, previousContext) => ({ | |
| headers: { | |
| "X-Shopify-Storefront-Access-Token": "${accessToken}", | |
| } | |
| })).concat(http); | |
| api.loadSource(async store => { | |