When trying to encode this: class MyClass: Object, Codable { @Persisted var someValue: String } // I've created and added MyClass to Realm. I then query for
Should the use of class inheritance break the Decodability of class. For example, the following code class Server : Codable { var id : Int? } class Deve