graphql финты ушами
когда надо в параметре передать [Int]! то так неззя надо делать объект который быдет иметь такое поле. -------------------------------------------- Multiple fields In a single GraphQL query, we can write as many root query fields as we need. In the server, all these fields will be processed in parallel and will give you the result as a whole. { latestPost { title }, authors { name } } src: https://medium.com/@tkssharma/wrapping-a-rest-api-in-graphql-querying-graphql-779345035949 make type-resolvers so you can go infinitely deep into the graph. I made a simple server example here that shows deep relationships. Because all the noun-fields are references, it goes infinitely deep for any query. * можно добавлять параметризованные поля в типы, но по смыслу это то же самое что мульти запрос: type Word{ id: String! value: String! lang1(var1:Int):String! } data cl...