Matthew McNeely

Results 27 comments of Matthew McNeely

I agree. The thread that monitors the `Context` is probably a bit too "automagic". There is the GA::Marshal method which can be called at anytime. I'll remove the Context monitoring...

@MaxHalford Ready for review again. One issue to be aware of that I discovered during testing is that sometimes, a population can exist (and be marshaled) in which no individual...

@MaxHalford After spending more time with my marshaling branch, I made some changes to this PR. - add support for storage of the entire GA (minus config parts). I found...

@SvenC56 Here's an example of the `Basic` example in the most simplest VueJS example: https://codepen.io/matthewmcneely/pen/QWGQVYK

@SvenC56 No, I was just experimenting with Vue and this project to see how they reacted together. Although from the error message you provided, it doesn't seem as though the...

In your second curl command, change the incorrectly capitalized BEARER to Bearer and your request will work.

Additional observation: if the mutation is applied twice in the upsert, the counts are correct. ``` upsert { query{ target as var(func:eq(nid, "XXX")) { uid } books as var(func:type(Book), first:...

Additional observation: An analysis of the pb.Mutations object in [ApplyMutations](https://github.com/dgraph-io/dgraph/blob/b69b8e51882fcfead02be63b0304e64ea75aa6ac/query/mutation.go#L38) shows that the correct number of uids are in the protobuf edges slice, before its sent to `MutateOverNetwork`.

Additional observation: A query for all entries in the `collections.books` edge shows that indeed only X number of entries are returned, equal to the count(collection.books). Just verifying it wasn't a...

Please don't merge this yet. Getting a panic when testing this locally.