GraphQL is the King. Long Live the King! (R.I.P. REST)
S.C. Barrus
32819

Just a quick heads up, your Cars response is not valid JSON. Your arrays of cars is structured as an associative array with duplicate keys (“model”). You can’t have an associative array in JSON so I assume you meant to create an array of Car objects, which each have a model property?

Not that it really matters as it’s just meant as an example, but maybe correct it as not to confuse anyone about what a GraphQL response looks like.