apollo-server/docs/source/essentials/queries.md

13 lines
502 B
Markdown
Raw Normal View History

2018-04-05 01:24:56 -04:00
---
2018-04-05 09:53:52 -04:00
title: Queries
2018-04-05 01:24:56 -04:00
description: Turning queries into data
---
2018-04-05 02:31:10 -04:00
Once you have a working schema, you need to load some actual data for your app! Using resolvers you can fetch data from your backend, select and rename the results from your data sources, and link different information together. Learn how flexible GraphQL is in how it can translate requests into data with resolvers.
<h2 id="fetching">Fetching data</h2>
<h2 id="shaping">Shaping results</h2>
<h2 id="linking">Linking data sources</h2>