hofmatthias
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:  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.  By instantiating the objects of the schema myself by passing the json data it fixes the problem. Thus not...