This is an automated email from the ASF dual-hosted git repository. danhaywood pushed a commit to branch CAUSEWAY-3676 in repository https://gitbox.apache.org/repos/asf/causeway.git
commit de325e89c427cfd864d2f7a607dc062959ab8095 Author: danhaywood <[email protected]> AuthorDate: Sat Jan 20 16:45:54 2024 +0000 CAUSEWAY-3676: minor reordering --- .../graphql/viewer/integration/GraphQlSourceForCauseway.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/incubator/viewers/graphql/viewer/src/main/java/org/apache/causeway/viewer/graphql/viewer/integration/GraphQlSourceForCauseway.java b/incubator/viewers/graphql/viewer/src/main/java/org/apache/causeway/viewer/graphql/viewer/integration/GraphQlSourceForCauseway.java index b5c803eab6..8b111b96a1 100644 --- a/incubator/viewers/graphql/viewer/src/main/java/org/apache/causeway/viewer/graphql/viewer/integration/GraphQlSourceForCauseway.java +++ b/incubator/viewers/graphql/viewer/src/main/java/org/apache/causeway/viewer/graphql/viewer/integration/GraphQlSourceForCauseway.java @@ -199,13 +199,14 @@ public class GraphQlSourceForCauseway implements GraphQlSource { val gqlvDomainObject = new GqlvDomainObject(objectSpec, codeRegistryBuilder, bookmarkService, objectManager, specificationLoader); - graphQLTypeRegistry.addTypeIfNotAlreadyPresent(gqlvDomainObject.getMeta().getMetaField().getType()); - graphQLTypeRegistry.addTypeIfNotAlreadyPresent(gqlvDomainObject.getGqlInputObjectType()); - gqlvDomainObject.addPropertiesAsFields(); gqlvDomainObject.addCollectionsAsLists(); gqlvDomainObject.addActionsAsFields(); + + graphQLTypeRegistry.addTypeIfNotAlreadyPresent(gqlvDomainObject.getMeta().getMetaField().getType()); + graphQLTypeRegistry.addTypeIfNotAlreadyPresent(gqlvDomainObject.getGqlInputObjectType()); + gqlvDomainObject.getMutatorsTypeIfAny() .ifPresent(graphQLTypeRegistry::addTypeIfNotAlreadyPresent);
