├── .codecov.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yaml ├── release.yml └── workflows │ └── build.yml ├── .gitignore ├── .prettierrc.yaml ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── NOTICE ├── README.md ├── annotations ├── LICENSE ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── introproventures │ └── graphql │ └── jpa │ └── query │ └── annotation │ ├── GraphQLDefaultOrderBy.java │ ├── GraphQLDescription.java │ ├── GraphQLIgnore.java │ ├── GraphQLIgnoreFilter.java │ └── GraphQLIgnoreOrder.java ├── autoconfigure ├── LICENSE ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── introproventures │ │ │ └── graphql │ │ │ └── jpa │ │ │ └── query │ │ │ └── autoconfigure │ │ │ ├── EnableGraphQLJpaQuerySchema.java │ │ │ ├── EnableGraphQLJpaQuerySchemaImportSelector.java │ │ │ ├── GraphQLJPASchemaBuilderCustomizer.java │ │ │ ├── GraphQLJpaQueryAutoConfiguration.java │ │ │ ├── GraphQLJpaQueryGraphQlExecutionAutoConfiguration.java │ │ │ ├── GraphQLJpaQueryGraphQlSourceAutoConfiguration.java │ │ │ ├── GraphQLJpaQueryProperties.java │ │ │ ├── GraphQLSchemaAutoConfiguration.java │ │ │ ├── GraphQLSchemaBuilderAutoConfiguration.java │ │ │ ├── GraphQLSchemaConfigurer.java │ │ │ ├── GraphQLSchemaEntityManager.java │ │ │ ├── GraphQLSchemaFactoryBean.java │ │ │ ├── GraphQLSchemaTransactionTemplate.java │ │ │ ├── GraphQLShemaRegistration.java │ │ │ ├── GraphQLShemaRegistrationImpl.java │ │ │ ├── JavaScalarsRuntimeWiringConfigurer.java │ │ │ ├── MutationExecutionStrategyProvider.java │ │ │ ├── QueryExecutionStrategyProvider.java │ │ │ ├── SubscriptionExecutionStrategyProvider.java │ │ │ ├── TransactionalDelegateExecutionStrategy.java │ │ │ ├── TransactionalExecutionStrategyCustomizer.java │ │ │ └── TypeTraverser.java │ └── resources │ │ └── META-INF │ │ └── spring │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ └── test │ ├── java │ └── com │ │ └── introproventures │ │ └── graphql │ │ └── jpa │ │ └── query │ │ └── autoconfigure │ │ ├── GraphQLSchemaAutoConfigurationTest.java │ │ └── support │ │ ├── AdditionalGraphQLType.java │ │ ├── MutationRoot.java │ │ ├── QueryRoot.java │ │ ├── SubscriptionRoot.java │ │ ├── TestChildEntity.java │ │ └── TestEntity.java │ └── resources │ ├── activiti.graphqls │ └── application.yml ├── boot-starter ├── LICENSE └── pom.xml ├── dependencies ├── LICENSE └── pom.xml ├── examples ├── LICENSE ├── pom.xml └── spring-graphql-web │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── introproventures │ │ │ └── graphql │ │ │ └── jpa │ │ │ └── query │ │ │ └── example │ │ │ ├── Application.java │ │ │ ├── config │ │ │ └── GraphQLSchemaConfiguration.java │ │ │ ├── controllers │ │ │ ├── MutationController.java │ │ │ ├── QueryController.java │ │ │ ├── SubscriptionController.java │ │ │ └── dto │ │ │ │ ├── CreateBookInput.java │ │ │ │ └── CreateBookResult.java │ │ │ └── repository │ │ │ └── BookRepository.java │ └── resources │ │ ├── application.yml │ │ ├── data.sql │ │ ├── graphql │ │ └── schema.graphqls │ │ └── hibernate.properties │ └── test │ └── java │ └── com │ └── introproventures │ └── graphql │ └── jpa │ └── query │ └── example │ ├── ApplicationTest.java │ ├── MutationControllerTest.java │ ├── QueryControllerTest.java │ └── SubscriptionControllerTest.java ├── introspection ├── LICENSE ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── introproventures │ │ └── graphql │ │ └── jpa │ │ └── query │ │ └── introspection │ │ ├── AnnotationDescriptor.java │ │ ├── Annotations.java │ │ ├── ArrayUtil.java │ │ ├── BeanUtil.java │ │ ├── ClassDescriptor.java │ │ ├── ClassIntrospector.java │ │ ├── ClassUtil.java │ │ ├── ConstructorDescriptor.java │ │ ├── Constructors.java │ │ ├── Descriptor.java │ │ ├── FieldDescriptor.java │ │ ├── Fields.java │ │ ├── Getter.java │ │ ├── MethodDescriptor.java │ │ ├── Methods.java │ │ ├── ObjectUtil.java │ │ ├── Properties.java │ │ ├── PropertyDescriptor.java │ │ ├── ReflectionUtil.java │ │ └── Setter.java │ └── test │ └── java │ └── com │ └── introproventures │ └── graphql │ └── jpa │ └── query │ └── introspection │ ├── AnnotationDescriptorTest.java │ ├── AnnotationsTest.java │ ├── ArrayUtilTest.java │ ├── BeanUtilTest.java │ ├── ClassIntrospectorTest.java │ ├── ClassUtilTest.java │ ├── ConstructorDescriptorTest.java │ ├── ConstructorsTest.java │ ├── FieldDescriptorTest.java │ ├── FieldsTest.java │ ├── MethodDescriptorTest.java │ ├── MethodsTest.java │ ├── ObjectUtilTest.java │ ├── PropertiesTest.java │ ├── PropertyDescriptorTest.java │ └── ReflectionUtilTest.java ├── jitpack.yml ├── pom.xml ├── scalars ├── LICENSE ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── introproventures │ │ └── graphql │ │ └── jpa │ │ └── query │ │ └── schema │ │ ├── JavaScalars.java │ │ └── JavaScalarsWiringPostProcessor.java │ └── test │ ├── java │ └── com │ │ └── introproventures │ │ └── graphql │ │ └── jpa │ │ └── query │ │ └── schema │ │ ├── JavaScalarsTest.java │ │ ├── ObjectCoercingTests.java │ │ └── fixtures │ │ └── VariableValue.java │ └── resources │ ├── EntityWithEmbeddedIdTest.sql │ ├── EntityWithIdClassTest.sql │ ├── GraphQLJpaConverterTests.sql │ ├── LocalDatetTmeData.sql │ ├── RestrictedKeysProviderTests.sql │ ├── application.properties │ ├── data.sql │ └── hibernate.properties ├── schema ├── LICENSE ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── introproventures │ │ └── graphql │ │ └── jpa │ │ └── query │ │ ├── schema │ │ ├── GraphQLExecutionInputFactory.java │ │ ├── GraphQLExecutor.java │ │ ├── GraphQLExecutorContext.java │ │ ├── GraphQLExecutorContextFactory.java │ │ ├── GraphQLSchemaBuilder.java │ │ ├── NamingStrategy.java │ │ ├── RestrictedKeysProvider.java │ │ ├── impl │ │ │ ├── AstValueHelper.java │ │ │ ├── BatchLoaderRegistry.java │ │ │ ├── DataFetchingEnvironmentBuilder.java │ │ │ ├── EntityIntrospector.java │ │ │ ├── GraphQLJpaExecutor.java │ │ │ ├── GraphQLJpaExecutorContext.java │ │ │ ├── GraphQLJpaExecutorContextFactory.java │ │ │ ├── GraphQLJpaQueryDataFetcher.java │ │ │ ├── GraphQLJpaQueryFactory.java │ │ │ ├── GraphQLJpaSchemaBuilder.java │ │ │ ├── GraphQLJpaSimpleDataFetcher.java │ │ │ ├── GraphQLJpaStreamDataFetcher.java │ │ │ ├── GraphQLJpaToManyDataFetcher.java │ │ │ ├── GraphQLJpaToManyMappedBatchLoader.java │ │ │ ├── GraphQLJpaToOneDataFetcher.java │ │ │ ├── GraphQLJpaToOneMappedBatchLoader.java │ │ │ ├── GraphQLObjectTypeMetadata.java │ │ │ ├── JpaPredicateBuilder.java │ │ │ ├── Logical.java │ │ │ ├── PageArgument.java │ │ │ ├── PagedResult.java │ │ │ ├── PredicateFilter.java │ │ │ └── ResultStreamWrapper.java │ │ └── relay │ │ │ ├── Connection.java │ │ │ ├── CursorProvider.java │ │ │ ├── GenericPage.java │ │ │ ├── GraphQLJpaRelayDataFetcher.java │ │ │ ├── OffsetBasedCursor.java │ │ │ ├── Page.java │ │ │ ├── PageFactory.java │ │ │ ├── PagingArguments.java │ │ │ └── SortField.java │ │ └── support │ │ └── GraphQLSupport.java │ └── test │ ├── java │ └── com │ │ └── introproventures │ │ └── graphql │ │ └── jpa │ │ └── query │ │ ├── AbstractSpringBootTestSupport.java │ │ ├── converter │ │ ├── GraphQLJpaConverterTests.java │ │ ├── GraphQLJpaQueryAggregateTests.java │ │ └── model │ │ │ ├── AbstractVariableEntity.java │ │ │ ├── ActivitiEntityMetadata.java │ │ │ ├── JsonEntity.java │ │ │ ├── JsonNodeConverter.java │ │ │ ├── ProcessVariableEntity.java │ │ │ ├── TaskEntity.java │ │ │ ├── TaskStatus.java │ │ │ ├── TaskVariableEntity.java │ │ │ ├── VariableValue.java │ │ │ └── VariableValueJsonConverter.java │ │ ├── embeddedid │ │ ├── EntityWithEmbeddedIdTest.java │ │ └── model │ │ │ ├── Book.java │ │ │ └── BookId.java │ │ ├── idclass │ │ ├── EntityWithIdClassTest.java │ │ └── model │ │ │ ├── Account.java │ │ │ └── AccountId.java │ │ ├── localdatetime │ │ ├── GraphQLLocalDateTimeTest.java │ │ └── model │ │ │ └── LocalDateEntity.java │ │ ├── restricted │ │ ├── RestrictedKeysProviderRelayTests.java │ │ ├── RestrictedKeysProviderSelectTests.java │ │ └── SpringSecurityRestrictedKeysProvider.java │ │ ├── schema │ │ ├── BooksSchemaBuildTest.java │ │ ├── BooksSchemaCustomizerBuildTest.java │ │ ├── CalculatedEntityTests.java │ │ ├── EntityIntrospectorTest.java │ │ ├── GraphQLEnumVariableBindingsTests.java │ │ ├── GraphQLExecutorExperimentalStreamResultsEnabledTests.java │ │ ├── GraphQLExecutorExperimentalTests.java │ │ ├── GraphQLExecutorListCriteriaTests.java │ │ ├── GraphQLExecutorSuperClassTests.java │ │ ├── GraphQLExecutorTests.java │ │ ├── GraphQLExecutorWithGraphQLIDTypeTests.java │ │ ├── GraphQLWhereVariableBindingsTests.java │ │ ├── StarwarsQueryExecutorStreamResultsEnabledTests.java │ │ ├── StarwarsQueryExecutorTests.java │ │ ├── StarwarsQueryExecutorWithGraphQLIDTypeTests.java │ │ ├── StarwarsSchemaBuildTest.java │ │ ├── StarwarsSchemaBuildWithDistinctTest.java │ │ ├── impl │ │ │ ├── AstValueHelperTest.java │ │ │ ├── GraphQLJpaExecutorContextFactoryTest.java │ │ │ └── ResultStreamWrapperTest.java │ │ └── model │ │ │ ├── book_superclass │ │ │ ├── BaseAuthor.java │ │ │ ├── BaseBook.java │ │ │ ├── SuperAuthor.java │ │ │ ├── SuperBook.java │ │ │ └── SuperGenre.java │ │ │ ├── calculated │ │ │ ├── CalculatedEntity.java │ │ │ └── ParentCalculatedEntity.java │ │ │ ├── embedded │ │ │ ├── Boat.java │ │ │ ├── Car.java │ │ │ ├── Engine.java │ │ │ └── Vehicle.java │ │ │ ├── floating │ │ │ └── FloatingThing.java │ │ │ ├── metamodel │ │ │ ├── ClassWithCustomMetamodel.java │ │ │ └── ClassWithCustomMetamodel_.java │ │ │ └── uuid │ │ │ └── Thing.java │ │ ├── spring │ │ └── ExecutionGraphQlServiceTest.java │ │ └── support │ │ ├── GraphQLExecutorExperimentalTestsSupport.java │ │ ├── GraphQLExecutorTestConfiguration.java │ │ ├── GraphQLExecutorTestsSupport.java │ │ └── StarwarsQueryExecutorTestsSupport.java │ └── resources │ ├── EntityWithEmbeddedIdTest.sql │ ├── EntityWithIdClassTest.sql │ ├── GraphQLJpaAggregateTests.sql │ ├── GraphQLJpaConverterTests.sql │ ├── LocalDatetTmeData.sql │ ├── RestrictedKeysProviderTests.sql │ ├── application.properties │ ├── data.sql │ ├── h2-init.sql │ └── hibernate.properties ├── tests ├── LICENSE ├── boot-starter │ ├── LICENSE │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── introproventures │ │ │ │ └── graphql │ │ │ │ └── jpa │ │ │ │ └── query │ │ │ │ └── boot │ │ │ │ └── test │ │ │ │ └── starter │ │ │ │ ├── Application.java │ │ │ │ └── controllers │ │ │ │ ├── MutationController.java │ │ │ │ ├── QueryController.java │ │ │ │ └── SubscriptionController.java │ │ └── resources │ │ │ ├── application.yml │ │ │ └── graphql │ │ │ └── schema.graphqls │ │ └── test │ │ └── java │ │ └── com │ │ └── introproventures │ │ └── graphql │ │ └── jpa │ │ └── query │ │ └── boot │ │ └── test │ │ ├── autoconfigure │ │ └── GraphQLJpaQueryGraphQlSourceAutoConfigurationTest.java │ │ └── starter │ │ └── GraphQLJpaQueryStarterIT.java ├── gatling │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── introproventures │ │ │ │ └── graphql │ │ │ │ └── jpa │ │ │ │ └── query │ │ │ │ └── example │ │ │ │ └── Application.java │ │ └── resources │ │ │ ├── application.yml │ │ │ └── data.sql │ │ └── test │ │ ├── java │ │ ├── com │ │ │ └── introproventures │ │ │ │ └── graphql │ │ │ │ └── jpa │ │ │ │ └── query │ │ │ │ └── example │ │ │ │ ├── ApplicationTest.java │ │ │ │ └── TestApplication.java │ │ └── gatling │ │ │ ├── PerfTestConfig.java │ │ │ ├── TestProcessVariablesSimulation.java │ │ │ ├── TestTaskVariablesSimulation.java │ │ │ └── utils │ │ │ └── SystemPropertiesUtil.java │ │ └── resources │ │ └── logback-test.xml ├── models │ ├── LICENSE │ ├── books │ │ ├── LICENSE │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── introproventures │ │ │ │ └── graphql │ │ │ │ └── jpa │ │ │ │ └── query │ │ │ │ └── schema │ │ │ │ └── model │ │ │ │ └── book │ │ │ │ ├── Author.java │ │ │ │ ├── Book.java │ │ │ │ ├── Genre.java │ │ │ │ └── Publisher.java │ │ │ └── resources │ │ │ └── books.sql │ ├── pom.xml │ └── starwars │ │ ├── LICENSE │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── introproventures │ │ │ └── graphql │ │ │ └── jpa │ │ │ └── query │ │ │ └── schema │ │ │ └── model │ │ │ └── starwars │ │ │ ├── Character.java │ │ │ ├── CodeList.java │ │ │ ├── Droid.java │ │ │ ├── DroidFunction.java │ │ │ ├── Episode.java │ │ │ └── Human.java │ │ └── resources │ │ └── starwars.sql ├── multiple-datasources │ ├── LICENSE │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── introproventures │ │ │ │ └── graphql │ │ │ │ └── jpa │ │ │ │ └── query │ │ │ │ └── example │ │ │ │ ├── Application.java │ │ │ │ ├── books │ │ │ │ └── BooksSchemaConfiguration.java │ │ │ │ └── starwars │ │ │ │ └── StarwarsSchemaConfiguration.java │ │ └── resources │ │ │ ├── application.yml │ │ │ └── hibernate.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── introproventures │ │ └── graphql │ │ └── jpa │ │ └── query │ │ └── example │ │ └── ApplicationTest.java ├── pom.xml ├── relay │ ├── LICENSE │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── introproventures │ │ │ │ └── graphql │ │ │ │ └── jpa │ │ │ │ └── query │ │ │ │ └── example │ │ │ │ └── relay │ │ │ │ └── Application.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── introproventures │ │ └── graphql │ │ └── jpa │ │ └── query │ │ └── example │ │ └── relay │ │ └── ApplicationTest.java ├── starwars │ ├── LICENSE │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── introproventures │ │ │ │ └── graphql │ │ │ │ └── jpa │ │ │ │ └── query │ │ │ │ └── example │ │ │ │ └── Application.java │ │ └── resources │ │ │ ├── application.yml │ │ │ └── hibernate.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── introproventures │ │ └── graphql │ │ └── jpa │ │ └── query │ │ └── example │ │ └── ApplicationTest.java └── web │ ├── LICENSE │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── introproventures │ │ │ └── graphql │ │ │ └── jpa │ │ │ └── query │ │ │ └── boot │ │ │ └── test │ │ │ └── Application.java │ └── resources │ │ └── application.yml │ └── test │ └── java │ └── com │ └── introproventures │ └── graphql │ └── jpa │ └── query │ └── boot │ └── test │ ├── GraphQLJpaQueryAutoConfigurationTest.java │ └── GraphQLJpaQueryStarterTest.java └── web ├── LICENSE ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── introproventures │ │ └── graphql │ │ └── jpa │ │ └── query │ │ └── web │ │ ├── GraphQLController.java │ │ ├── GraphQLControllerProperties.java │ │ └── autoconfigure │ │ └── GraphQLControllerAutoConfiguration.java └── resources │ └── META-INF │ └── spring │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports └── test └── java └── com └── introproventures └── graphql └── jpa └── query └── test └── web ├── GraphQLControllerTest.java └── autoconfigure ├── GraphQLControllerAutoConfigurationPropertyDisabledTest.java ├── GraphQLControllerAutoConfigurationTest.java ├── GraphQLControllerAutoConfigurationWebNoneTest.java └── GraphQLControllerAutoConfigurationWebPropertyDisabledTest.java /.codecov.yml: -------------------------------------------------------------------------------- 1 | codecov: 2 | branch: master -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/README.md -------------------------------------------------------------------------------- /annotations/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/annotations/LICENSE -------------------------------------------------------------------------------- /annotations/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/annotations/pom.xml -------------------------------------------------------------------------------- /annotations/src/main/java/com/introproventures/graphql/jpa/query/annotation/GraphQLDefaultOrderBy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/annotations/src/main/java/com/introproventures/graphql/jpa/query/annotation/GraphQLDefaultOrderBy.java -------------------------------------------------------------------------------- /annotations/src/main/java/com/introproventures/graphql/jpa/query/annotation/GraphQLDescription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/annotations/src/main/java/com/introproventures/graphql/jpa/query/annotation/GraphQLDescription.java -------------------------------------------------------------------------------- /annotations/src/main/java/com/introproventures/graphql/jpa/query/annotation/GraphQLIgnore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/annotations/src/main/java/com/introproventures/graphql/jpa/query/annotation/GraphQLIgnore.java -------------------------------------------------------------------------------- /annotations/src/main/java/com/introproventures/graphql/jpa/query/annotation/GraphQLIgnoreFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/annotations/src/main/java/com/introproventures/graphql/jpa/query/annotation/GraphQLIgnoreFilter.java -------------------------------------------------------------------------------- /annotations/src/main/java/com/introproventures/graphql/jpa/query/annotation/GraphQLIgnoreOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/annotations/src/main/java/com/introproventures/graphql/jpa/query/annotation/GraphQLIgnoreOrder.java -------------------------------------------------------------------------------- /autoconfigure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/LICENSE -------------------------------------------------------------------------------- /autoconfigure/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/pom.xml -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/EnableGraphQLJpaQuerySchema.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/EnableGraphQLJpaQuerySchema.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/EnableGraphQLJpaQuerySchemaImportSelector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/EnableGraphQLJpaQuerySchemaImportSelector.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLJPASchemaBuilderCustomizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLJPASchemaBuilderCustomizer.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLJpaQueryAutoConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLJpaQueryAutoConfiguration.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLJpaQueryGraphQlExecutionAutoConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLJpaQueryGraphQlExecutionAutoConfiguration.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLJpaQueryGraphQlSourceAutoConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLJpaQueryGraphQlSourceAutoConfiguration.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLJpaQueryProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLJpaQueryProperties.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLSchemaAutoConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLSchemaAutoConfiguration.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLSchemaBuilderAutoConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLSchemaBuilderAutoConfiguration.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLSchemaConfigurer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLSchemaConfigurer.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLSchemaEntityManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLSchemaEntityManager.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLSchemaFactoryBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLSchemaFactoryBean.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLSchemaTransactionTemplate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLSchemaTransactionTemplate.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLShemaRegistration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLShemaRegistration.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLShemaRegistrationImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLShemaRegistrationImpl.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/JavaScalarsRuntimeWiringConfigurer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/JavaScalarsRuntimeWiringConfigurer.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/MutationExecutionStrategyProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/MutationExecutionStrategyProvider.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/QueryExecutionStrategyProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/QueryExecutionStrategyProvider.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/SubscriptionExecutionStrategyProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/SubscriptionExecutionStrategyProvider.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/TransactionalDelegateExecutionStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/TransactionalDelegateExecutionStrategy.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/TransactionalExecutionStrategyCustomizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/TransactionalExecutionStrategyCustomizer.java -------------------------------------------------------------------------------- /autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/TypeTraverser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/java/com/introproventures/graphql/jpa/query/autoconfigure/TypeTraverser.java -------------------------------------------------------------------------------- /autoconfigure/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports -------------------------------------------------------------------------------- /autoconfigure/src/test/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLSchemaAutoConfigurationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/test/java/com/introproventures/graphql/jpa/query/autoconfigure/GraphQLSchemaAutoConfigurationTest.java -------------------------------------------------------------------------------- /autoconfigure/src/test/java/com/introproventures/graphql/jpa/query/autoconfigure/support/AdditionalGraphQLType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/test/java/com/introproventures/graphql/jpa/query/autoconfigure/support/AdditionalGraphQLType.java -------------------------------------------------------------------------------- /autoconfigure/src/test/java/com/introproventures/graphql/jpa/query/autoconfigure/support/MutationRoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/test/java/com/introproventures/graphql/jpa/query/autoconfigure/support/MutationRoot.java -------------------------------------------------------------------------------- /autoconfigure/src/test/java/com/introproventures/graphql/jpa/query/autoconfigure/support/QueryRoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/test/java/com/introproventures/graphql/jpa/query/autoconfigure/support/QueryRoot.java -------------------------------------------------------------------------------- /autoconfigure/src/test/java/com/introproventures/graphql/jpa/query/autoconfigure/support/SubscriptionRoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/test/java/com/introproventures/graphql/jpa/query/autoconfigure/support/SubscriptionRoot.java -------------------------------------------------------------------------------- /autoconfigure/src/test/java/com/introproventures/graphql/jpa/query/autoconfigure/support/TestChildEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/test/java/com/introproventures/graphql/jpa/query/autoconfigure/support/TestChildEntity.java -------------------------------------------------------------------------------- /autoconfigure/src/test/java/com/introproventures/graphql/jpa/query/autoconfigure/support/TestEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/test/java/com/introproventures/graphql/jpa/query/autoconfigure/support/TestEntity.java -------------------------------------------------------------------------------- /autoconfigure/src/test/resources/activiti.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/test/resources/activiti.graphqls -------------------------------------------------------------------------------- /autoconfigure/src/test/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/autoconfigure/src/test/resources/application.yml -------------------------------------------------------------------------------- /boot-starter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/boot-starter/LICENSE -------------------------------------------------------------------------------- /boot-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/boot-starter/pom.xml -------------------------------------------------------------------------------- /dependencies/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/dependencies/LICENSE -------------------------------------------------------------------------------- /dependencies/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/dependencies/pom.xml -------------------------------------------------------------------------------- /examples/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/examples/LICENSE -------------------------------------------------------------------------------- /examples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/examples/pom.xml -------------------------------------------------------------------------------- /examples/spring-graphql-web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/examples/spring-graphql-web/pom.xml -------------------------------------------------------------------------------- /examples/spring-graphql-web/src/main/java/com/introproventures/graphql/jpa/query/example/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/examples/spring-graphql-web/src/main/java/com/introproventures/graphql/jpa/query/example/Application.java -------------------------------------------------------------------------------- /examples/spring-graphql-web/src/main/java/com/introproventures/graphql/jpa/query/example/config/GraphQLSchemaConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/examples/spring-graphql-web/src/main/java/com/introproventures/graphql/jpa/query/example/config/GraphQLSchemaConfiguration.java -------------------------------------------------------------------------------- /examples/spring-graphql-web/src/main/java/com/introproventures/graphql/jpa/query/example/controllers/MutationController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/examples/spring-graphql-web/src/main/java/com/introproventures/graphql/jpa/query/example/controllers/MutationController.java -------------------------------------------------------------------------------- /examples/spring-graphql-web/src/main/java/com/introproventures/graphql/jpa/query/example/controllers/QueryController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/examples/spring-graphql-web/src/main/java/com/introproventures/graphql/jpa/query/example/controllers/QueryController.java -------------------------------------------------------------------------------- /examples/spring-graphql-web/src/main/java/com/introproventures/graphql/jpa/query/example/controllers/SubscriptionController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/examples/spring-graphql-web/src/main/java/com/introproventures/graphql/jpa/query/example/controllers/SubscriptionController.java -------------------------------------------------------------------------------- /examples/spring-graphql-web/src/main/java/com/introproventures/graphql/jpa/query/example/controllers/dto/CreateBookInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/examples/spring-graphql-web/src/main/java/com/introproventures/graphql/jpa/query/example/controllers/dto/CreateBookInput.java -------------------------------------------------------------------------------- /examples/spring-graphql-web/src/main/java/com/introproventures/graphql/jpa/query/example/controllers/dto/CreateBookResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/examples/spring-graphql-web/src/main/java/com/introproventures/graphql/jpa/query/example/controllers/dto/CreateBookResult.java -------------------------------------------------------------------------------- /examples/spring-graphql-web/src/main/java/com/introproventures/graphql/jpa/query/example/repository/BookRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/examples/spring-graphql-web/src/main/java/com/introproventures/graphql/jpa/query/example/repository/BookRepository.java -------------------------------------------------------------------------------- /examples/spring-graphql-web/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/examples/spring-graphql-web/src/main/resources/application.yml -------------------------------------------------------------------------------- /examples/spring-graphql-web/src/main/resources/data.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/spring-graphql-web/src/main/resources/graphql/schema.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/examples/spring-graphql-web/src/main/resources/graphql/schema.graphqls -------------------------------------------------------------------------------- /examples/spring-graphql-web/src/main/resources/hibernate.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/examples/spring-graphql-web/src/main/resources/hibernate.properties -------------------------------------------------------------------------------- /examples/spring-graphql-web/src/test/java/com/introproventures/graphql/jpa/query/example/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/examples/spring-graphql-web/src/test/java/com/introproventures/graphql/jpa/query/example/ApplicationTest.java -------------------------------------------------------------------------------- /examples/spring-graphql-web/src/test/java/com/introproventures/graphql/jpa/query/example/MutationControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/examples/spring-graphql-web/src/test/java/com/introproventures/graphql/jpa/query/example/MutationControllerTest.java -------------------------------------------------------------------------------- /examples/spring-graphql-web/src/test/java/com/introproventures/graphql/jpa/query/example/QueryControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/examples/spring-graphql-web/src/test/java/com/introproventures/graphql/jpa/query/example/QueryControllerTest.java -------------------------------------------------------------------------------- /examples/spring-graphql-web/src/test/java/com/introproventures/graphql/jpa/query/example/SubscriptionControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/examples/spring-graphql-web/src/test/java/com/introproventures/graphql/jpa/query/example/SubscriptionControllerTest.java -------------------------------------------------------------------------------- /introspection/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/LICENSE -------------------------------------------------------------------------------- /introspection/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/pom.xml -------------------------------------------------------------------------------- /introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/AnnotationDescriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/AnnotationDescriptor.java -------------------------------------------------------------------------------- /introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/Annotations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/Annotations.java -------------------------------------------------------------------------------- /introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/ArrayUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/ArrayUtil.java -------------------------------------------------------------------------------- /introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/BeanUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/BeanUtil.java -------------------------------------------------------------------------------- /introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/ClassDescriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/ClassDescriptor.java -------------------------------------------------------------------------------- /introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/ClassIntrospector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/ClassIntrospector.java -------------------------------------------------------------------------------- /introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/ClassUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/ClassUtil.java -------------------------------------------------------------------------------- /introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/ConstructorDescriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/ConstructorDescriptor.java -------------------------------------------------------------------------------- /introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/Constructors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/Constructors.java -------------------------------------------------------------------------------- /introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/Descriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/Descriptor.java -------------------------------------------------------------------------------- /introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/FieldDescriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/FieldDescriptor.java -------------------------------------------------------------------------------- /introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/Fields.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/Fields.java -------------------------------------------------------------------------------- /introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/Getter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/Getter.java -------------------------------------------------------------------------------- /introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/MethodDescriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/MethodDescriptor.java -------------------------------------------------------------------------------- /introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/Methods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/Methods.java -------------------------------------------------------------------------------- /introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/ObjectUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/ObjectUtil.java -------------------------------------------------------------------------------- /introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/Properties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/Properties.java -------------------------------------------------------------------------------- /introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/PropertyDescriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/PropertyDescriptor.java -------------------------------------------------------------------------------- /introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/ReflectionUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/ReflectionUtil.java -------------------------------------------------------------------------------- /introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/Setter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/main/java/com/introproventures/graphql/jpa/query/introspection/Setter.java -------------------------------------------------------------------------------- /introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/AnnotationDescriptorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/AnnotationDescriptorTest.java -------------------------------------------------------------------------------- /introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/AnnotationsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/AnnotationsTest.java -------------------------------------------------------------------------------- /introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/ArrayUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/ArrayUtilTest.java -------------------------------------------------------------------------------- /introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/BeanUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/BeanUtilTest.java -------------------------------------------------------------------------------- /introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/ClassIntrospectorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/ClassIntrospectorTest.java -------------------------------------------------------------------------------- /introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/ClassUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/ClassUtilTest.java -------------------------------------------------------------------------------- /introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/ConstructorDescriptorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/ConstructorDescriptorTest.java -------------------------------------------------------------------------------- /introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/ConstructorsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/ConstructorsTest.java -------------------------------------------------------------------------------- /introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/FieldDescriptorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/FieldDescriptorTest.java -------------------------------------------------------------------------------- /introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/FieldsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/FieldsTest.java -------------------------------------------------------------------------------- /introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/MethodDescriptorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/MethodDescriptorTest.java -------------------------------------------------------------------------------- /introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/MethodsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/MethodsTest.java -------------------------------------------------------------------------------- /introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/ObjectUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/ObjectUtilTest.java -------------------------------------------------------------------------------- /introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/PropertiesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/PropertiesTest.java -------------------------------------------------------------------------------- /introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/PropertyDescriptorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/PropertyDescriptorTest.java -------------------------------------------------------------------------------- /introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/ReflectionUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/introspection/src/test/java/com/introproventures/graphql/jpa/query/introspection/ReflectionUtilTest.java -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/jitpack.yml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/pom.xml -------------------------------------------------------------------------------- /scalars/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/scalars/LICENSE -------------------------------------------------------------------------------- /scalars/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/scalars/pom.xml -------------------------------------------------------------------------------- /scalars/src/main/java/com/introproventures/graphql/jpa/query/schema/JavaScalars.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/scalars/src/main/java/com/introproventures/graphql/jpa/query/schema/JavaScalars.java -------------------------------------------------------------------------------- /scalars/src/main/java/com/introproventures/graphql/jpa/query/schema/JavaScalarsWiringPostProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/scalars/src/main/java/com/introproventures/graphql/jpa/query/schema/JavaScalarsWiringPostProcessor.java -------------------------------------------------------------------------------- /scalars/src/test/java/com/introproventures/graphql/jpa/query/schema/JavaScalarsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/scalars/src/test/java/com/introproventures/graphql/jpa/query/schema/JavaScalarsTest.java -------------------------------------------------------------------------------- /scalars/src/test/java/com/introproventures/graphql/jpa/query/schema/ObjectCoercingTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/scalars/src/test/java/com/introproventures/graphql/jpa/query/schema/ObjectCoercingTests.java -------------------------------------------------------------------------------- /scalars/src/test/java/com/introproventures/graphql/jpa/query/schema/fixtures/VariableValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/scalars/src/test/java/com/introproventures/graphql/jpa/query/schema/fixtures/VariableValue.java -------------------------------------------------------------------------------- /scalars/src/test/resources/EntityWithEmbeddedIdTest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/scalars/src/test/resources/EntityWithEmbeddedIdTest.sql -------------------------------------------------------------------------------- /scalars/src/test/resources/EntityWithIdClassTest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/scalars/src/test/resources/EntityWithIdClassTest.sql -------------------------------------------------------------------------------- /scalars/src/test/resources/GraphQLJpaConverterTests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/scalars/src/test/resources/GraphQLJpaConverterTests.sql -------------------------------------------------------------------------------- /scalars/src/test/resources/LocalDatetTmeData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/scalars/src/test/resources/LocalDatetTmeData.sql -------------------------------------------------------------------------------- /scalars/src/test/resources/RestrictedKeysProviderTests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/scalars/src/test/resources/RestrictedKeysProviderTests.sql -------------------------------------------------------------------------------- /scalars/src/test/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/scalars/src/test/resources/application.properties -------------------------------------------------------------------------------- /scalars/src/test/resources/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/scalars/src/test/resources/data.sql -------------------------------------------------------------------------------- /scalars/src/test/resources/hibernate.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/scalars/src/test/resources/hibernate.properties -------------------------------------------------------------------------------- /schema/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/LICENSE -------------------------------------------------------------------------------- /schema/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/pom.xml -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/GraphQLExecutionInputFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/GraphQLExecutionInputFactory.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/GraphQLExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/GraphQLExecutor.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/GraphQLExecutorContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/GraphQLExecutorContext.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/GraphQLExecutorContextFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/GraphQLExecutorContextFactory.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/GraphQLSchemaBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/GraphQLSchemaBuilder.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/NamingStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/NamingStrategy.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/RestrictedKeysProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/RestrictedKeysProvider.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/AstValueHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/AstValueHelper.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/BatchLoaderRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/BatchLoaderRegistry.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/DataFetchingEnvironmentBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/DataFetchingEnvironmentBuilder.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/EntityIntrospector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/EntityIntrospector.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaExecutor.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaExecutorContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaExecutorContext.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaExecutorContextFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaExecutorContextFactory.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaQueryDataFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaQueryDataFetcher.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaQueryFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaQueryFactory.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaSchemaBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaSchemaBuilder.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaSimpleDataFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaSimpleDataFetcher.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaStreamDataFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaStreamDataFetcher.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaToManyDataFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaToManyDataFetcher.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaToManyMappedBatchLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaToManyMappedBatchLoader.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaToOneDataFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaToOneDataFetcher.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaToOneMappedBatchLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaToOneMappedBatchLoader.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLObjectTypeMetadata.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLObjectTypeMetadata.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/JpaPredicateBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/JpaPredicateBuilder.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/Logical.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/Logical.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/PageArgument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/PageArgument.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/PagedResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/PagedResult.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/PredicateFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/PredicateFilter.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/ResultStreamWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/ResultStreamWrapper.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/relay/Connection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/relay/Connection.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/relay/CursorProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/relay/CursorProvider.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/relay/GenericPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/relay/GenericPage.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/relay/GraphQLJpaRelayDataFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/relay/GraphQLJpaRelayDataFetcher.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/relay/OffsetBasedCursor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/relay/OffsetBasedCursor.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/relay/Page.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/relay/Page.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/relay/PageFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/relay/PageFactory.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/relay/PagingArguments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/relay/PagingArguments.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/schema/relay/SortField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/schema/relay/SortField.java -------------------------------------------------------------------------------- /schema/src/main/java/com/introproventures/graphql/jpa/query/support/GraphQLSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/main/java/com/introproventures/graphql/jpa/query/support/GraphQLSupport.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/AbstractSpringBootTestSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/AbstractSpringBootTestSupport.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/converter/GraphQLJpaConverterTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/converter/GraphQLJpaConverterTests.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/converter/GraphQLJpaQueryAggregateTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/converter/GraphQLJpaQueryAggregateTests.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/converter/model/AbstractVariableEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/converter/model/AbstractVariableEntity.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/converter/model/ActivitiEntityMetadata.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/converter/model/ActivitiEntityMetadata.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/converter/model/JsonEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/converter/model/JsonEntity.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/converter/model/JsonNodeConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/converter/model/JsonNodeConverter.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/converter/model/ProcessVariableEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/converter/model/ProcessVariableEntity.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/converter/model/TaskEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/converter/model/TaskEntity.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/converter/model/TaskStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/converter/model/TaskStatus.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/converter/model/TaskVariableEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/converter/model/TaskVariableEntity.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/converter/model/VariableValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/converter/model/VariableValue.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/converter/model/VariableValueJsonConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/converter/model/VariableValueJsonConverter.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/embeddedid/EntityWithEmbeddedIdTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/embeddedid/EntityWithEmbeddedIdTest.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/embeddedid/model/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/embeddedid/model/Book.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/embeddedid/model/BookId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/embeddedid/model/BookId.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/idclass/EntityWithIdClassTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/idclass/EntityWithIdClassTest.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/idclass/model/Account.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/idclass/model/Account.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/idclass/model/AccountId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/idclass/model/AccountId.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/localdatetime/GraphQLLocalDateTimeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/localdatetime/GraphQLLocalDateTimeTest.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/localdatetime/model/LocalDateEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/localdatetime/model/LocalDateEntity.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/restricted/RestrictedKeysProviderRelayTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/restricted/RestrictedKeysProviderRelayTests.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/restricted/RestrictedKeysProviderSelectTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/restricted/RestrictedKeysProviderSelectTests.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/restricted/SpringSecurityRestrictedKeysProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/restricted/SpringSecurityRestrictedKeysProvider.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/BooksSchemaBuildTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/BooksSchemaBuildTest.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/BooksSchemaCustomizerBuildTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/BooksSchemaCustomizerBuildTest.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/CalculatedEntityTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/CalculatedEntityTests.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/EntityIntrospectorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/EntityIntrospectorTest.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/GraphQLEnumVariableBindingsTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/GraphQLEnumVariableBindingsTests.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/GraphQLExecutorExperimentalStreamResultsEnabledTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/GraphQLExecutorExperimentalStreamResultsEnabledTests.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/GraphQLExecutorExperimentalTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/GraphQLExecutorExperimentalTests.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/GraphQLExecutorListCriteriaTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/GraphQLExecutorListCriteriaTests.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/GraphQLExecutorSuperClassTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/GraphQLExecutorSuperClassTests.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/GraphQLExecutorTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/GraphQLExecutorTests.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/GraphQLExecutorWithGraphQLIDTypeTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/GraphQLExecutorWithGraphQLIDTypeTests.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/GraphQLWhereVariableBindingsTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/GraphQLWhereVariableBindingsTests.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/StarwarsQueryExecutorStreamResultsEnabledTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/StarwarsQueryExecutorStreamResultsEnabledTests.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/StarwarsQueryExecutorTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/StarwarsQueryExecutorTests.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/StarwarsQueryExecutorWithGraphQLIDTypeTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/StarwarsQueryExecutorWithGraphQLIDTypeTests.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/StarwarsSchemaBuildTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/StarwarsSchemaBuildTest.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/StarwarsSchemaBuildWithDistinctTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/StarwarsSchemaBuildWithDistinctTest.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/impl/AstValueHelperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/impl/AstValueHelperTest.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaExecutorContextFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaExecutorContextFactoryTest.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/impl/ResultStreamWrapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/impl/ResultStreamWrapperTest.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/book_superclass/BaseAuthor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/book_superclass/BaseAuthor.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/book_superclass/BaseBook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/book_superclass/BaseBook.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/book_superclass/SuperAuthor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/book_superclass/SuperAuthor.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/book_superclass/SuperBook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/book_superclass/SuperBook.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/book_superclass/SuperGenre.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/book_superclass/SuperGenre.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/calculated/CalculatedEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/calculated/CalculatedEntity.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/calculated/ParentCalculatedEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/calculated/ParentCalculatedEntity.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/embedded/Boat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/embedded/Boat.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/embedded/Car.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/embedded/Car.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/embedded/Engine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/embedded/Engine.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/embedded/Vehicle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/embedded/Vehicle.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/floating/FloatingThing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/floating/FloatingThing.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/metamodel/ClassWithCustomMetamodel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/metamodel/ClassWithCustomMetamodel.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/metamodel/ClassWithCustomMetamodel_.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/metamodel/ClassWithCustomMetamodel_.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/uuid/Thing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/schema/model/uuid/Thing.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/spring/ExecutionGraphQlServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/spring/ExecutionGraphQlServiceTest.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/support/GraphQLExecutorExperimentalTestsSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/support/GraphQLExecutorExperimentalTestsSupport.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/support/GraphQLExecutorTestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/support/GraphQLExecutorTestConfiguration.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/support/GraphQLExecutorTestsSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/support/GraphQLExecutorTestsSupport.java -------------------------------------------------------------------------------- /schema/src/test/java/com/introproventures/graphql/jpa/query/support/StarwarsQueryExecutorTestsSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/java/com/introproventures/graphql/jpa/query/support/StarwarsQueryExecutorTestsSupport.java -------------------------------------------------------------------------------- /schema/src/test/resources/EntityWithEmbeddedIdTest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/resources/EntityWithEmbeddedIdTest.sql -------------------------------------------------------------------------------- /schema/src/test/resources/EntityWithIdClassTest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/resources/EntityWithIdClassTest.sql -------------------------------------------------------------------------------- /schema/src/test/resources/GraphQLJpaAggregateTests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/resources/GraphQLJpaAggregateTests.sql -------------------------------------------------------------------------------- /schema/src/test/resources/GraphQLJpaConverterTests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/resources/GraphQLJpaConverterTests.sql -------------------------------------------------------------------------------- /schema/src/test/resources/LocalDatetTmeData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/resources/LocalDatetTmeData.sql -------------------------------------------------------------------------------- /schema/src/test/resources/RestrictedKeysProviderTests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/resources/RestrictedKeysProviderTests.sql -------------------------------------------------------------------------------- /schema/src/test/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/resources/application.properties -------------------------------------------------------------------------------- /schema/src/test/resources/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/resources/data.sql -------------------------------------------------------------------------------- /schema/src/test/resources/h2-init.sql: -------------------------------------------------------------------------------- 1 | CREATE TYPE IF NOT EXISTS "JSONB" AS json; 2 | -------------------------------------------------------------------------------- /schema/src/test/resources/hibernate.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/schema/src/test/resources/hibernate.properties -------------------------------------------------------------------------------- /tests/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/LICENSE -------------------------------------------------------------------------------- /tests/boot-starter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/boot-starter/LICENSE -------------------------------------------------------------------------------- /tests/boot-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/boot-starter/pom.xml -------------------------------------------------------------------------------- /tests/boot-starter/src/main/java/com/introproventures/graphql/jpa/query/boot/test/starter/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/boot-starter/src/main/java/com/introproventures/graphql/jpa/query/boot/test/starter/Application.java -------------------------------------------------------------------------------- /tests/boot-starter/src/main/java/com/introproventures/graphql/jpa/query/boot/test/starter/controllers/MutationController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/boot-starter/src/main/java/com/introproventures/graphql/jpa/query/boot/test/starter/controllers/MutationController.java -------------------------------------------------------------------------------- /tests/boot-starter/src/main/java/com/introproventures/graphql/jpa/query/boot/test/starter/controllers/QueryController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/boot-starter/src/main/java/com/introproventures/graphql/jpa/query/boot/test/starter/controllers/QueryController.java -------------------------------------------------------------------------------- /tests/boot-starter/src/main/java/com/introproventures/graphql/jpa/query/boot/test/starter/controllers/SubscriptionController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/boot-starter/src/main/java/com/introproventures/graphql/jpa/query/boot/test/starter/controllers/SubscriptionController.java -------------------------------------------------------------------------------- /tests/boot-starter/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/boot-starter/src/main/resources/application.yml -------------------------------------------------------------------------------- /tests/boot-starter/src/main/resources/graphql/schema.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/boot-starter/src/main/resources/graphql/schema.graphqls -------------------------------------------------------------------------------- /tests/boot-starter/src/test/java/com/introproventures/graphql/jpa/query/boot/test/autoconfigure/GraphQLJpaQueryGraphQlSourceAutoConfigurationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/boot-starter/src/test/java/com/introproventures/graphql/jpa/query/boot/test/autoconfigure/GraphQLJpaQueryGraphQlSourceAutoConfigurationTest.java -------------------------------------------------------------------------------- /tests/boot-starter/src/test/java/com/introproventures/graphql/jpa/query/boot/test/starter/GraphQLJpaQueryStarterIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/boot-starter/src/test/java/com/introproventures/graphql/jpa/query/boot/test/starter/GraphQLJpaQueryStarterIT.java -------------------------------------------------------------------------------- /tests/gatling/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/gatling/pom.xml -------------------------------------------------------------------------------- /tests/gatling/src/main/java/com/introproventures/graphql/jpa/query/example/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/gatling/src/main/java/com/introproventures/graphql/jpa/query/example/Application.java -------------------------------------------------------------------------------- /tests/gatling/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/gatling/src/main/resources/application.yml -------------------------------------------------------------------------------- /tests/gatling/src/main/resources/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/gatling/src/main/resources/data.sql -------------------------------------------------------------------------------- /tests/gatling/src/test/java/com/introproventures/graphql/jpa/query/example/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/gatling/src/test/java/com/introproventures/graphql/jpa/query/example/ApplicationTest.java -------------------------------------------------------------------------------- /tests/gatling/src/test/java/com/introproventures/graphql/jpa/query/example/TestApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/gatling/src/test/java/com/introproventures/graphql/jpa/query/example/TestApplication.java -------------------------------------------------------------------------------- /tests/gatling/src/test/java/gatling/PerfTestConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/gatling/src/test/java/gatling/PerfTestConfig.java -------------------------------------------------------------------------------- /tests/gatling/src/test/java/gatling/TestProcessVariablesSimulation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/gatling/src/test/java/gatling/TestProcessVariablesSimulation.java -------------------------------------------------------------------------------- /tests/gatling/src/test/java/gatling/TestTaskVariablesSimulation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/gatling/src/test/java/gatling/TestTaskVariablesSimulation.java -------------------------------------------------------------------------------- /tests/gatling/src/test/java/gatling/utils/SystemPropertiesUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/gatling/src/test/java/gatling/utils/SystemPropertiesUtil.java -------------------------------------------------------------------------------- /tests/gatling/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/gatling/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /tests/models/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/models/LICENSE -------------------------------------------------------------------------------- /tests/models/books/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/models/books/LICENSE -------------------------------------------------------------------------------- /tests/models/books/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/models/books/pom.xml -------------------------------------------------------------------------------- /tests/models/books/src/main/java/com/introproventures/graphql/jpa/query/schema/model/book/Author.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/models/books/src/main/java/com/introproventures/graphql/jpa/query/schema/model/book/Author.java -------------------------------------------------------------------------------- /tests/models/books/src/main/java/com/introproventures/graphql/jpa/query/schema/model/book/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/models/books/src/main/java/com/introproventures/graphql/jpa/query/schema/model/book/Book.java -------------------------------------------------------------------------------- /tests/models/books/src/main/java/com/introproventures/graphql/jpa/query/schema/model/book/Genre.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/models/books/src/main/java/com/introproventures/graphql/jpa/query/schema/model/book/Genre.java -------------------------------------------------------------------------------- /tests/models/books/src/main/java/com/introproventures/graphql/jpa/query/schema/model/book/Publisher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/models/books/src/main/java/com/introproventures/graphql/jpa/query/schema/model/book/Publisher.java -------------------------------------------------------------------------------- /tests/models/books/src/main/resources/books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/models/books/src/main/resources/books.sql -------------------------------------------------------------------------------- /tests/models/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/models/pom.xml -------------------------------------------------------------------------------- /tests/models/starwars/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/models/starwars/LICENSE -------------------------------------------------------------------------------- /tests/models/starwars/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/models/starwars/pom.xml -------------------------------------------------------------------------------- /tests/models/starwars/src/main/java/com/introproventures/graphql/jpa/query/schema/model/starwars/Character.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/models/starwars/src/main/java/com/introproventures/graphql/jpa/query/schema/model/starwars/Character.java -------------------------------------------------------------------------------- /tests/models/starwars/src/main/java/com/introproventures/graphql/jpa/query/schema/model/starwars/CodeList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/models/starwars/src/main/java/com/introproventures/graphql/jpa/query/schema/model/starwars/CodeList.java -------------------------------------------------------------------------------- /tests/models/starwars/src/main/java/com/introproventures/graphql/jpa/query/schema/model/starwars/Droid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/models/starwars/src/main/java/com/introproventures/graphql/jpa/query/schema/model/starwars/Droid.java -------------------------------------------------------------------------------- /tests/models/starwars/src/main/java/com/introproventures/graphql/jpa/query/schema/model/starwars/DroidFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/models/starwars/src/main/java/com/introproventures/graphql/jpa/query/schema/model/starwars/DroidFunction.java -------------------------------------------------------------------------------- /tests/models/starwars/src/main/java/com/introproventures/graphql/jpa/query/schema/model/starwars/Episode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/models/starwars/src/main/java/com/introproventures/graphql/jpa/query/schema/model/starwars/Episode.java -------------------------------------------------------------------------------- /tests/models/starwars/src/main/java/com/introproventures/graphql/jpa/query/schema/model/starwars/Human.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/models/starwars/src/main/java/com/introproventures/graphql/jpa/query/schema/model/starwars/Human.java -------------------------------------------------------------------------------- /tests/models/starwars/src/main/resources/starwars.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/models/starwars/src/main/resources/starwars.sql -------------------------------------------------------------------------------- /tests/multiple-datasources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/multiple-datasources/LICENSE -------------------------------------------------------------------------------- /tests/multiple-datasources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/multiple-datasources/pom.xml -------------------------------------------------------------------------------- /tests/multiple-datasources/src/main/java/com/introproventures/graphql/jpa/query/example/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/multiple-datasources/src/main/java/com/introproventures/graphql/jpa/query/example/Application.java -------------------------------------------------------------------------------- /tests/multiple-datasources/src/main/java/com/introproventures/graphql/jpa/query/example/books/BooksSchemaConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/multiple-datasources/src/main/java/com/introproventures/graphql/jpa/query/example/books/BooksSchemaConfiguration.java -------------------------------------------------------------------------------- /tests/multiple-datasources/src/main/java/com/introproventures/graphql/jpa/query/example/starwars/StarwarsSchemaConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/multiple-datasources/src/main/java/com/introproventures/graphql/jpa/query/example/starwars/StarwarsSchemaConfiguration.java -------------------------------------------------------------------------------- /tests/multiple-datasources/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/multiple-datasources/src/main/resources/application.yml -------------------------------------------------------------------------------- /tests/multiple-datasources/src/main/resources/hibernate.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/multiple-datasources/src/main/resources/hibernate.properties -------------------------------------------------------------------------------- /tests/multiple-datasources/src/test/java/com/introproventures/graphql/jpa/query/example/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/multiple-datasources/src/test/java/com/introproventures/graphql/jpa/query/example/ApplicationTest.java -------------------------------------------------------------------------------- /tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/pom.xml -------------------------------------------------------------------------------- /tests/relay/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/relay/LICENSE -------------------------------------------------------------------------------- /tests/relay/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/relay/pom.xml -------------------------------------------------------------------------------- /tests/relay/src/main/java/com/introproventures/graphql/jpa/query/example/relay/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/relay/src/main/java/com/introproventures/graphql/jpa/query/example/relay/Application.java -------------------------------------------------------------------------------- /tests/relay/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/relay/src/main/resources/application.yml -------------------------------------------------------------------------------- /tests/relay/src/test/java/com/introproventures/graphql/jpa/query/example/relay/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/relay/src/test/java/com/introproventures/graphql/jpa/query/example/relay/ApplicationTest.java -------------------------------------------------------------------------------- /tests/starwars/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/starwars/LICENSE -------------------------------------------------------------------------------- /tests/starwars/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/starwars/pom.xml -------------------------------------------------------------------------------- /tests/starwars/src/main/java/com/introproventures/graphql/jpa/query/example/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/starwars/src/main/java/com/introproventures/graphql/jpa/query/example/Application.java -------------------------------------------------------------------------------- /tests/starwars/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/starwars/src/main/resources/application.yml -------------------------------------------------------------------------------- /tests/starwars/src/main/resources/hibernate.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/starwars/src/main/resources/hibernate.properties -------------------------------------------------------------------------------- /tests/starwars/src/test/java/com/introproventures/graphql/jpa/query/example/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/starwars/src/test/java/com/introproventures/graphql/jpa/query/example/ApplicationTest.java -------------------------------------------------------------------------------- /tests/web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/web/LICENSE -------------------------------------------------------------------------------- /tests/web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/web/pom.xml -------------------------------------------------------------------------------- /tests/web/src/main/java/com/introproventures/graphql/jpa/query/boot/test/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/web/src/main/java/com/introproventures/graphql/jpa/query/boot/test/Application.java -------------------------------------------------------------------------------- /tests/web/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/web/src/main/resources/application.yml -------------------------------------------------------------------------------- /tests/web/src/test/java/com/introproventures/graphql/jpa/query/boot/test/GraphQLJpaQueryAutoConfigurationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/web/src/test/java/com/introproventures/graphql/jpa/query/boot/test/GraphQLJpaQueryAutoConfigurationTest.java -------------------------------------------------------------------------------- /tests/web/src/test/java/com/introproventures/graphql/jpa/query/boot/test/GraphQLJpaQueryStarterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/tests/web/src/test/java/com/introproventures/graphql/jpa/query/boot/test/GraphQLJpaQueryStarterTest.java -------------------------------------------------------------------------------- /web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/web/LICENSE -------------------------------------------------------------------------------- /web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/web/pom.xml -------------------------------------------------------------------------------- /web/src/main/java/com/introproventures/graphql/jpa/query/web/GraphQLController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/web/src/main/java/com/introproventures/graphql/jpa/query/web/GraphQLController.java -------------------------------------------------------------------------------- /web/src/main/java/com/introproventures/graphql/jpa/query/web/GraphQLControllerProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/web/src/main/java/com/introproventures/graphql/jpa/query/web/GraphQLControllerProperties.java -------------------------------------------------------------------------------- /web/src/main/java/com/introproventures/graphql/jpa/query/web/autoconfigure/GraphQLControllerAutoConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/web/src/main/java/com/introproventures/graphql/jpa/query/web/autoconfigure/GraphQLControllerAutoConfiguration.java -------------------------------------------------------------------------------- /web/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/web/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports -------------------------------------------------------------------------------- /web/src/test/java/com/introproventures/graphql/jpa/query/test/web/GraphQLControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/web/src/test/java/com/introproventures/graphql/jpa/query/test/web/GraphQLControllerTest.java -------------------------------------------------------------------------------- /web/src/test/java/com/introproventures/graphql/jpa/query/test/web/autoconfigure/GraphQLControllerAutoConfigurationPropertyDisabledTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/web/src/test/java/com/introproventures/graphql/jpa/query/test/web/autoconfigure/GraphQLControllerAutoConfigurationPropertyDisabledTest.java -------------------------------------------------------------------------------- /web/src/test/java/com/introproventures/graphql/jpa/query/test/web/autoconfigure/GraphQLControllerAutoConfigurationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/web/src/test/java/com/introproventures/graphql/jpa/query/test/web/autoconfigure/GraphQLControllerAutoConfigurationTest.java -------------------------------------------------------------------------------- /web/src/test/java/com/introproventures/graphql/jpa/query/test/web/autoconfigure/GraphQLControllerAutoConfigurationWebNoneTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/web/src/test/java/com/introproventures/graphql/jpa/query/test/web/autoconfigure/GraphQLControllerAutoConfigurationWebNoneTest.java -------------------------------------------------------------------------------- /web/src/test/java/com/introproventures/graphql/jpa/query/test/web/autoconfigure/GraphQLControllerAutoConfigurationWebPropertyDisabledTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/introproventures/graphql-jpa-query/HEAD/web/src/test/java/com/introproventures/graphql/jpa/query/test/web/autoconfigure/GraphQLControllerAutoConfigurationWebPropertyDisabledTest.java --------------------------------------------------------------------------------