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
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 makegenerateQuery
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