You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@unomi.apache.org by sh...@apache.org on 2020/07/02 09:54:01 UTC

[unomi] branch master updated (1272601 -> 859370e)

This is an automated email from the ASF dual-hosted git repository.

shuber pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/unomi.git.


    from 1272601  Merge pull request #173 from apache/UNOMI-296-graphql-playground
     new 0f224e9  UNOMI-352 Implement event type registry for GraphQL
     new 8144185  UNOMI-352 Implement event type registry for GraphQL
     new 859370e  Merge pull request #174 from enonic/unomi-352

The 2199 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../converters/UnomiToGraphQLConverter.java        |  88 +++++++++++++++++
 .../CustomEventOrSetPropertyDataFetcher.java       |  83 ++++++++++++++++
 .../fetchers/CustomerPropertyDataFetcher.java      |  19 +---
 .../graphql/fetchers/DynamicFieldDataFetcher.java  |  16 +++
 .../profile/ProfileDynamicFieldSetDataFetcher.java |  37 -------
 .../providers/CDPDefaultGraphQLProvider.java       |   2 +
 .../graphql/schema/CDPEventInterfaceRegister.java  |   8 +-
 .../graphql/schema/GraphQLSchemaProvider.java      | 109 +++++----------------
 .../unomi/graphql/types/output/UnomiEvent.java     |   4 +
 .../types/resolvers/CDPEventInterfaceResolver.java |   5 +-
 .../apache/unomi/graphql/utils/ReflectionUtil.java |  23 +++++
 .../apache/unomi/graphql/utils/StringUtils.java    |  13 ++-
 .../main/resources/META-INF/cxs/events/search.json |  49 +++++++++
 13 files changed, 306 insertions(+), 150 deletions(-)
 create mode 100644 graphql/cxs-impl/src/main/java/org/apache/unomi/graphql/converters/UnomiToGraphQLConverter.java
 create mode 100644 graphql/cxs-impl/src/main/java/org/apache/unomi/graphql/fetchers/CustomEventOrSetPropertyDataFetcher.java
 delete mode 100644 graphql/cxs-impl/src/main/java/org/apache/unomi/graphql/fetchers/profile/ProfileDynamicFieldSetDataFetcher.java
 create mode 100644 services/src/main/resources/META-INF/cxs/events/search.json