Pablo Fernandez
02/16/2022, 6:38 PMreturn API.get("notes", "/notes")
. What's the first argument? "notes"? What does it match? I'm getting API notes does not exist
in my app (which is a bit different).Devin
02/16/2022, 6:50 PMAmplify.configure({
API: {
endpoints: [
{
name: "customers",
endpoint: config.apiGateway.URL,
region: config.apiGateway.REGION,
},
],
},
Devin
02/16/2022, 6:50 PMAPI.get()
takes i’ve always understood to be the API name that amplify is reading.Pablo Fernandez
02/16/2022, 6:54 PM