Im trying to get started with react-fullstack-basi...
# orm-help
j
Im trying to get started with react-fullstack-basic. Ive added a new content type to database/datamodel.graphql which I can interact with via the playground, however I cant access the data in React. Ive added the query in src/schema.graphql. Do I need to do something else?
k
Have you also created a corresponding resolver for the query you added into
src/schema.graphql
?
j
Yes, what I needed to do was add a custom resolver in src/index/js
🙌 1