techknowfile
techknowfile
**_Bug report_** Memory consumption explodes with large number of nodes in MST. 2MB of data -> ~600MB in MST 40MB of data -> ~16GB in MST * [x] I've checked...
I am adding headers to my `gqlHttpClient` with `getEnv(store).gqlHttpClient.setHeaders({Authorization: "Bearer " + user.access_token})` This works perfectly in my queries. However, when calling the scaffolded mutations, the Authorization header isn't being...
I'm using mst-gql with graphql subscriptions to enable real-time collaborative editing in my application. One important requirement of the subscriptions is that they must be applied to the mobx-state-tree in...
I have one Union type model `(MetricSettable)` scaffolded from my graphQL endpoint. The resulting file, `MetricSettableUnionModelSelector.js` has two exports that aren't actually used anywhere, except being imported into `RootStore.base.js`: `MetricSettableUnionModelSelector`...
I have a mutation that takes lists of several different DjangoObjectTypes and calls .save() on each of them inside of an atomic transaction. I'm currently Queueing up their event.send() calls...
I have a graphene subscription object type defined with the following resolver (`resolve_area_by_dc`). I need to create multiple subscription resolvers for different model types (this one is for AreaModel). The...
* **What is the current behavior?** I have a query that returns a semi-large amount of data (1.3MB, maybe 100,000 objects). When I run the query using `response = schema.execute(query)`,...