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
Using parse('*') parses each object in json individually, meaning anything outside of a json array will not be properly parsed (it will have its keys removed and just read in the values). Playing around with a different option like parse() (which parses the whole json body as one) could alleviate the issue potentially. This could also lead to singular shapes being hashed though which could be problematic
Impact
Could address some underlying issues/frustrations with the type mapper/shape hasher
The text was updated successfully, but these errors were encountered:
Bug Description
Using parse('*') parses each object in json individually, meaning anything outside of a json array will not be properly parsed (it will have its keys removed and just read in the values). Playing around with a different option like parse() (which parses the whole json body as one) could alleviate the issue potentially. This could also lead to singular shapes being hashed though which could be problematic
Impact
Could address some underlying issues/frustrations with the type mapper/shape hasher
The text was updated successfully, but these errors were encountered: