Hi! Thank you for creating this great library.
As I saw int the documentation, with this code there should be autogenerated initializer similar to this CourseCell(course: PandaEntry.Course), but the initializer is missing. Can you please help me to understand what is the problem?
struct CourseCell: View {
@GraphQL(PandaEntry.Course.title)
var title: String?
var body: some View {
Text(title ?? "unknown")
}
}
Hi! Thank you for creating this great library.
As I saw int the documentation, with this code there should be autogenerated initializer similar to this
CourseCell(course: PandaEntry.Course), but the initializer is missing. Can you please help me to understand what is the problem?