Missing getters? #1452
Unanswered
badmueller
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
i have for example two members in a type in my grapqhl schema
topMedia: Media
tags(after: String, before: String, first: Int, last: Int, orderBy: TagOrderByInput, skip: Int, where: TagWhereInput): [Tag!]!
For 'topMedia' a getter is created in the model class but not for 'tags'
In the resolver interface i see
java.util.List tags(Production production, String after, String before, Integer first, Integer last, TagOrderByInput orderBy, Integer skip, TagWhereInput where) throws Exception;
Is this this a setting for CodeGen or where do I have to look?
Thank you in advance,
Mark
Beta Was this translation helpful? Give feedback.
All reactions