At the moment, there seems to be no way to specify that the elements of an array are non-null. I'd propose an extension for array types: ``` @nonNull field ----> [Field]! ``` ``` @nonNull field[] ----> [Field!] ``` ``` @nonNull field[] @nonNull field ----> [Field!]! ```