DeepFrontend
Learning Paths
Practice
System Design & DS
Design Studio
Data Structures Curriculum
Real-World Case Studies
Careers
Job Board
Resume Builder
Blog
Sign in
Search
⌘K
Go Pro
Loading compiler resources...
GraphQL Quiz Practice
Active Recall Drill Session
← Exit Session
Question 1 of 1
hard
GraphQL
Two .load() calls issued synchronously back-to-back, and a third issued inside a setTimeout callback — how many total batch calls fire, confirmed by execution?
A
1 — all three always batch together
B
2 — the two synchronous calls batch together; the setTimeout call is a separate batch
C
3 — none of them ever batch
D
0 — setTimeout calls are ignored entirely
Check Answer