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
Given `type Query { user: User }` (nullable) and a failing non-null `name` field inside User, where does the null bubbling stop?
A
It doesn't stop — the whole response is always discarded
B
At `user` — since Query's user field is nullable, it absorbs the null there, giving { data: { user: null } }
C
It stops at `name` itself only
D
GraphQL throws an unrecoverable error instead of returning any data
Check Answer