From 72961eab4066e40eaa89bccd2ed1464da906cd02 Mon Sep 17 00:00:00 2001 From: rajprakash00 Date: Fri, 28 Aug 2020 17:19:28 +0530 Subject: [PATCH 1/2] fixed file names and links of query-execution --- docs/docs/query-execution.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docs/query-execution.md b/docs/docs/query-execution.md index 2f1a3abccd201..955f82340e12e 100644 --- a/docs/docs/query-execution.md +++ b/docs/docs/query-execution.md @@ -12,11 +12,11 @@ title: Query Execution ## Query execution -Query execution is kicked off by bootstrap by calling [page-query-runner.js runInitialQuerys()](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby/src/internal-plugins/query-runner/page-query-runner.js#L29). The main files involved in this step are: +Query execution is kicked off by bootstrap by calling [createQueryRunningActivity()](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby/src/query/index.js#L192). The main files involved in this step are: -- [page-query-runner.js](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby/src/internal-plugins/query-runner/query-queue.js) -- [query-queue.js](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby/src/internal-plugins/query-runner/query-queue.js) -- [query-runner.js](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby/src/internal-plugins/query-runner/query-runner.js) +- [index.js](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby/src/query/index.js) +- [queue.ts](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby/src/query/queue.ts) +- [query-runner.ts](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby/src/query/query-runner.ts) Here's an overview of how it all relates: From 55a14d3fee1bef5001566d8e4a3caa54aa074337 Mon Sep 17 00:00:00 2001 From: Lennart Date: Mon, 31 Aug 2020 10:39:00 +0200 Subject: [PATCH 2/2] Update docs/docs/query-execution.md --- docs/docs/query-execution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/query-execution.md b/docs/docs/query-execution.md index 955f82340e12e..bb9967b65a0ae 100644 --- a/docs/docs/query-execution.md +++ b/docs/docs/query-execution.md @@ -12,7 +12,7 @@ title: Query Execution ## Query execution -Query execution is kicked off by bootstrap by calling [createQueryRunningActivity()](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby/src/query/index.js#L192). The main files involved in this step are: +Query execution is kicked off by bootstrap by calling [`createQueryRunningActivity()`](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby/src/query/index.js#L192). The main files involved in this step are: - [index.js](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby/src/query/index.js) - [queue.ts](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby/src/query/queue.ts)