You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This call is deserializing/serializing trees and subtrees in a recursive fashion. It's expensive, memory consuming, and basically useless. It can be done once before getting in that function and the work is done. This is invoked every time you change a character that is not part of the query string. Since an object is a tree, the dump/parse loop is basically done on sub-items in a repetitive fashion.
The text was updated successfully, but these errors were encountered:
Describe the bug
microsoft-graph-explorer-v4/resources-filter.ts at dev · microsoftgraph/microsoft-graph-explorer-v4 (github.com)
This call is deserializing/serializing trees and subtrees in a recursive fashion. It's expensive, memory consuming, and basically useless. It can be done once before getting in that function and the work is done. This is invoked every time you change a character that is not part of the query string. Since an object is a tree, the dump/parse loop is basically done on sub-items in a repetitive fashion.
The text was updated successfully, but these errors were encountered: