Skip to content

Commit 7e246ad

Browse files
unicodeveloperpeggyrayzis
authored andcommitted
Reference the Subscription docs
1 parent 8236096 commit 7e246ad

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/source/resources/graphql-glossary.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ export const queryComponent = `const DogPhoto = ({ breed }) => (
267267
<p>A technique for preventing unwanted attacks by maintaining a list of approved queries that are allowed in your application. Any query not present in the list that is run against the server will not be allowed. [Automatic Persisted Queries](../guides/performance.html#automatic-persisted-queries) is a feature of Apollo Server 2 that enables query whitelisting and persisted queries.</p>
268268

269269
<h2 id="resolver">Resolver</h2>
270-
<p>A function that connects schema fields and types to various backends. Resolvers provide the instructions for turning a GraphQL operation into data. It can retrieve or write data from either an SQL, a No-SQL, graph database, a micro-service or a REST API. Resolvers can also return strings, ints, null, etc.</p>
270+
<p>A function that connects schema fields and types to various backends. Resolvers provide the instructions for turning a GraphQL operation into data. It can retrieve or write data from either an SQL, a No-SQL, graph database, a micro-service or a REST API. Resolvers can also return strings, ints, null, and other primitives.</p>
271271

272272
```js
273273
...
@@ -329,7 +329,7 @@ type Query {
329329

330330

331331
<h2 id="subscription">Subscription</h2>
332-
<p>A real-time GraphQL operation. A Subscription is defined in a schema like queries and mutations.</p>
332+
<p>A real-time GraphQL operation. A [Subscription](https://www.apollographql.com/docs/apollo-server/features/subscriptions.html) is defined in a schema like queries and mutations.</p>
333333

334334
```js
335335
type Subscription {

0 commit comments

Comments
 (0)