Alex Reilly

Results 58 comments of Alex Reilly

> > Riffing on my original idea of repeated operators, and a few of the ideas above of introducing [] syntax directly, perhaps these could be combined in a way...

I've added some additional notes to the [Known Problems Doc](https://docs.google.com/document/d/10MmZbzfPtk8GoAeSVm_m9ng8Aj10LBXVIQwkpjti6CQ/edit#heading=h.s7egindd6ela) based on what was discussed in the [November Working Group meeting.](https://www.youtube.com/watch?v=hVCzjcP9LAA) Check it out and let me know if anything...

@AnthonyMDev Any thoughts on what ought to happen if a non-list field is marked with the `[!]` operator? Should it be a validation error? A type cast?

@AnthonyMDev Schema: ```graphql type Lists { list: [Int] threeDList: [[[Int]]] } ``` Operation: ```graphql fragment foo on Lists { list! } ``` This feels like it should be valid, and...

The implementation is is up for review: https://github.com/graphql/graphql-js/pull/3281#issuecomment-973118901 I'd like a review on that PR before I write the spec since I'm a little more unsure about it now than...

I want to try to get discussion started on what to do with the `?`. I'm going to copy in everyone's opinions from [the working group meeting. ](https://www.youtube.com/watch?v=hVCzjcP9LAA) I'm going...

[@twof @mjmahone]: We could defer the conversation. It’s currently unclear what a counterpart to a non-nullable designator should do, so we could leave it out until the non-nullable designator gets...

[@leebyron] - Override Non-Nullable fields, and make them Nullable. As a side effect, fields marked with a question mark act as a boundary and stop null propagation from their children...

[@leebyron] - The RobinHood use case. (I wasn’t clear on the details here. It would be helpful if you could write more about this if you want it discussed.) -...

[@IvanGoncharov ] - In the case that something blows up because it’s been marked required, we could include the partial result in the error itself. That way you can access...