Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(gatsby): Defer node mutation during querying #25479
feat(gatsby): Defer node mutation during querying #25479
Changes from all commits
1193d2e
696d5fa
77b7f3b
6f97db6
36e8ef4
07d0741
cd3a909
d2b615b
01280a9
d049022
2dad129
1df526a
26420c4
637c642
4ff46bd
7bc5056
cd82b3f
6f0ab66
2ce7b77
133099d
e7f426e
7da48a6
8f497be
a4ac2dc
6ca668f
b701d7c
d3e7a59
ae0ece9
28e7691
896a2af
186eb0c
c0acfe1
12d5f20
78463b7
8987299
dc3fb42
fa05e0d
4e8609f
425eafc
aadc60b
33dc4fa
50faf93
f9bdf3c
059798b
da0b2ce
e9bf259
2116857
e514a76
9edd938
a32dc5f
b126a99
95e0291
9496046
1cab0be
6966e76
00a975d
087ed94
c807968
69f9a7a
523478a
b814215
38c05f5
98936a8
3f758f5
f12ceec
e8ddb4d
e450d7f
0d672fc
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this debounce completely removed or just moved around?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't need to debounce anymore, because we're not actually compiling on these events, just dispatching an event to the state machine to say that we'd like to compile when ready.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we do the firstRun guard inside the statemachine instead of here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah I think you're right: this should be two different services.