graphql/cxs-impl/src/main/java/org/apache/unomi/graphql/commands/list/AddProfileToListCommand.java [51:64]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        final UserList userList = serviceManager.getService(UserListService.class).load(listId);

        if (userList == null) {
            return null;
        }

        ProfileService profileService = serviceManager.getService(ProfileService.class);
        final Profile profile = profileService.load(profileIDInput.getId());

        if (profile == null) {
            return null;
        }

        final Event event = EventBuilder.create(CDPGraphQLConstants.CDP_LIST_UPDATE_EVENT_NAME, profile)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



graphql/cxs-impl/src/main/java/org/apache/unomi/graphql/commands/list/RemoveProfileFromListCommand.java [47:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        final UserList userList = serviceManager.getService(UserListService.class).load(listId);

        if (userList == null) {
            return null;
        }

        ProfileService profileService = serviceManager.getService(ProfileService.class);
        final Profile profile = profileService.load(profileIDInput.getId());

        if (profile == null) {
            return null;
        }

        final Event event = EventBuilder.create(CDPGraphQLConstants.CDP_LIST_UPDATE_EVENT_NAME, profile)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



