npokr
Results
2
comments of
npokr
I met the same bug with latest version graphql-java-tools. Workaround with method referencing nested input types works for me. I just wrote something like `type Query { dummy(input1: Input1, input2:...
OK, in Java entities look like ``` package ru.nn; import io.ebean.annotation.DbArray; import javax.persistence.*; import java.util.List; @Entity public class TestArrayMaster { @Embeddable public static class TestArrayDetail { @DbArray List vals; public...