graphql-client icon indicating copy to clipboard operation
graphql-client copied to clipboard

ID Deserialization is broken for Vec

Open Sytten opened this issue 6 months ago • 0 comments

With the changes related to Integer deserialization, it broke the case for Vec<ID> and Option<Vec<ID>

`?` operator cannot convert from `std::string::String` to `std::vec::Vec<std::string::String>`
expected struct `std::vec::Vec<std::string::String>`
   found struct `std::string::String`
= note: `?` operator cannot convert from `std::string::String` to `std::option::Option<std::vec::Vec<std::string::String>>`
   = note: expected enum `std::option::Option<std::vec::Vec<std::string::String>>`
            found struct `std::string::String`

Sytten avatar Jun 27 '25 14:06 Sytten