Skip to content

Commit

Permalink
Merge branch 'main' into release-3.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamn committed Jan 11, 2021
2 parents 2aa6af5 + 4a5822a commit 2cb0944
Show file tree
Hide file tree
Showing 6 changed files with 627 additions and 685 deletions.
1,070 changes: 512 additions & 558 deletions docs/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"types": "cd .. && typedoc --json ./docs/src/gatsby-theme-apollo-docs/docs.json --ignoreCompilerErrors ./src/index.ts"
},
"dependencies": {
"gatsby": "2.28.2",
"gatsby": "2.29.3",
"gatsby-theme-apollo-docs": "4.5.12",
"ink": "^2.7.1",
"react": "17.0.1",
Expand Down
2 changes: 1 addition & 1 deletion docs/source/data/queries.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ The `useLazyQuery` hook is perfect for executing queries in response to events
other than component rendering. This hook acts just like `useQuery`, with one key exception: when `useLazyQuery` is called, it does _not_ immediately execute its associated query. Instead, it returns a function in its result tuple that you can call whenever you're ready to execute the query:

```jsx:title=index.js
import React, { useState } from 'react';
import React from 'react';
import { useLazyQuery } from '@apollo/client';

function DelayedQuery() {
Expand Down

0 comments on commit 2cb0944

Please sign in to comment.