New
2.0.3
Fixed
- Percent encode semicolons when using GET (#812): Semicolons were not being correctly encoded into the query string when
useGETForQuerieswas enabled. Thank you to @nevil for the contribution. - Include merged fields in selection set equality check (#3602): When a field merged from a child object in a named fragment was merged, it was not being used for equality checks. Equality checks now use the types and collects selections from all of them, instead of just traversing downward from . This ensures all expected data is collected from merged fragments. See PR . .