ardeois / graphql-codegen-typescript-mock-data

[GraphQL Codegen Plugin](https://github.com/dotansimha/graphql-code-generator) for building mock data based on the schema.
MIT License
132 stars 47 forks source link

fix: Change the relationshipsToOmit data structure from Array to Set #109

Closed Jonghakseo closed 1 year ago

Jonghakseo commented 1 year ago

In the previous PR, due to the immutability issue, the data structure was modified from set to array.

However, I found out late that it is possible to fix bugs while using Set.

I opened a fix PR because I was aware that there was a performance hit.