You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to map fields for input types? I have been unable to find how to do this neither in the documentation or by searching the web.
For example to be able to map full_name in the schema to fullName in the java object:
input CreateUserInput {
full_name: String
}
to
public class CreateUserInput {
private String fullName; // Must match GraphQL schema
public String getFullName() {
return fullName;
}
public void setFullName(String fullName) {
this.fullName = fullName;
}
}