hofmatthias

Results 3 comments of hofmatthias

Yeah, I know it's against the GraphQL best practices to request a lot at once. In our company it's an internal software tool that exposes a GraphQL API, and we...

I narrowed the issue down to the following: ![image](https://user-images.githubusercontent.com/25790249/131094619-09e3fcf3-d48e-4844-9cd9-42c91bab85e6.png) In the add method of the Operation class. o = self.__type(other.get('data'), self.__selection_list) => self.__selection_list doesn't contain all selections If I print...

I found a very easy solution that fixed the problem. ![image](https://user-images.githubusercontent.com/25790249/131103205-fe499ab2-c2ec-4f93-bc0b-d5bac78c269a.png) By instantiating the objects of the schema myself by passing the json data it fixes the problem. Thus not...