timqian / gql-generator

Generate queries from graphql schema, used for writing api test.
MIT License
375 stars 93 forks source link

Add option to avoid cycles #49

Open mariusaarsnes opened 2 years ago

mariusaarsnes commented 2 years ago

This PR adds functionality to avoid cycles in the queries being generated in case there are cycles in the GraphQL schema definitions.

Add an optional parameter avoidCycles which when set will make generateQuery stop the recursion when encountering a child with the same name as a predecessor.

Pass along a set of Parents for each field. In the case that the name of the current field exists in the parent set, the method returns to avoid cycles

dr3 commented 2 years ago

@timqian What are your thoughts on a flag like this? Would be awesome to add something like this IMO