From 4c14ea0e7599146a40ce6f81997285b8ec613b04 Mon Sep 17 00:00:00 2001 From: Ivan Milchev Date: Fri, 2 Feb 2024 15:20:29 +0100 Subject: [PATCH] Update docs/development.md Co-authored-by: Letha --- docs/development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/development.md b/docs/development.md index 2efd34f950..0365c6e121 100644 --- a/docs/development.md +++ b/docs/development.md @@ -228,7 +228,7 @@ private gcp.project.computeService.address { } ``` -The simple wait to implement the reference would be to call the GCP API every time `gcp.project.computeService.address.network` is executed. However, this means we are going to be doing an excessive amount of API calls when scanning large GCP projects. If we have 10 addresses, this would mean we will do 10 separate API calls to get the network for each of them. +The simple way to implement the reference would be to call the GCP API every time `gcp.project.computeService.address.network` is executed. However, this would generate an excessive amount of API calls when scanning large GCP projects. If we have 10 addresses, this would mean 10 separate API calls to get the network, one for each of them. MQL has powerful caching capabilities that let us achieve the same end result with a single (or fewer) API calls.