Skip to content
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

Permissions enhancements #605

Merged
merged 35 commits into from
Jul 11, 2023
Merged

Permissions enhancements #605

merged 35 commits into from
Jul 11, 2023

Conversation

MariusDoe
Copy link
Collaborator

No description provided.

@MariusDoe MariusDoe marked this pull request as ready for review July 5, 2023 12:36
This is to mitigate a bug/behavior with refetchQueries, where
getParameterizedPermissions is refetched when the first mutation comes
back, but the refetch triggered by later mutations somehow does not run.
Batching the mutations solves this problem, since the refetch can only
start after all of the mutations have come back, which they can only do
together, since they are a batch (currently, there are never more than
50 mutations run at the same time). It also reduces network load as a
side benefit.
This is the second part of the fix for the problem described in the
previous commit. Batching alone does not help when BooleanParameters
change, since they rely on the correct order of delete and add, so the
refetch triggered by the delete overshadows the refetch triggered by the
add. Refetching manually solves this problem, since a refetch is only
triggered after a logical action is completed.

Batching is kept for the network load aspect.
@MariusDoe MariusDoe merged commit 020d67d into staging Jul 11, 2023
2 checks passed
@MariusDoe MariusDoe deleted the permissions-enhancements branch July 11, 2023 14:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants