├── .atlassian └── OWNER ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── other-issue.md ├── pull_request_template.md └── workflows │ ├── master.yml │ ├── pull_request.yml │ └── release.yml ├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml └── fileTemplates │ └── Nadel Test.kt ├── .run └── Update Test Snapshots.run.xml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.MD ├── docs ├── Primer.MD └── nadel-graphql-gateway.png ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── lib ├── build.gradle.kts └── src │ ├── main │ └── java │ │ └── graphql │ │ └── nadel │ │ ├── Nadel.kt │ │ ├── NadelExecutionHints.kt │ │ ├── NadelExecutionInput.kt │ │ ├── NadelExecutionParams.kt │ │ ├── NadelOperationKind.kt │ │ ├── NadelSchemas.kt │ │ ├── NadelTypeDefinitionRegistry.kt │ │ ├── NextgenEngine.kt │ │ ├── Service.kt │ │ ├── ServiceExecution.kt │ │ ├── ServiceExecutionFactory.kt │ │ ├── ServiceExecutionHydrationDetails.kt │ │ ├── ServiceExecutionParameters.kt │ │ ├── ServiceExecutionResult.kt │ │ ├── definition │ │ ├── NadelInstructionDefinition.kt │ │ ├── coordinates │ │ │ ├── NadelAppliedDirectiveArgumentCoordinates.kt │ │ │ ├── NadelAppliedDirectiveCoordinates.kt │ │ │ ├── NadelAppliedDirectiveParentCoordinates.kt │ │ │ ├── NadelArgumentCoordinates.kt │ │ │ ├── NadelArgumentParentCoordinates.kt │ │ │ ├── NadelChildCoordinates.kt │ │ │ ├── NadelCoordinatesUtil.kt │ │ │ ├── NadelDirectiveCoordinates.kt │ │ │ ├── NadelEnumCoordinates.kt │ │ │ ├── NadelEnumValueCoordinates.kt │ │ │ ├── NadelFieldContainerCoordinates.kt │ │ │ ├── NadelFieldCoordinates.kt │ │ │ ├── NadelImplementingTypeCoordinates.kt │ │ │ ├── NadelInputCoordinates.kt │ │ │ ├── NadelInputObjectCoordinates.kt │ │ │ ├── NadelInputObjectFieldCoordinates.kt │ │ │ ├── NadelInterfaceCoordinates.kt │ │ │ ├── NadelObjectCoordinates.kt │ │ │ ├── NadelScalarCoordinates.kt │ │ │ ├── NadelSchemaMemberCoordinates.kt │ │ │ ├── NadelTopLevelDefinitionCoordinates.kt │ │ │ ├── NadelTypeCoordinates.kt │ │ │ └── NadelUnionCoordinates.kt │ │ ├── hydration │ │ │ ├── NadelBatchObjectIdentifiedByDefinition.kt │ │ │ ├── NadelDefaultHydrationDefinition.kt │ │ │ ├── NadelHydrationArgumentDefinition.kt │ │ │ ├── NadelHydrationConditionDefinition.kt │ │ │ ├── NadelHydrationDefinition.kt │ │ │ └── NadelIdHydrationDefinition.kt │ │ ├── partition │ │ │ └── NadelPartitionDefinition.kt │ │ ├── renamed │ │ │ └── NadelRenamedDefinition.kt │ │ ├── stubbed │ │ │ └── NadelStubbedDefinition.kt │ │ └── virtualType │ │ │ └── NadelVirtualTypeDefinition.kt │ │ ├── engine │ │ ├── NadelExecutionContext.kt │ │ ├── NadelIncrementalResultAccumulator.kt │ │ ├── NadelIncrementalResultSupport.kt │ │ ├── NadelServiceExecutionContext.kt │ │ ├── blueprint │ │ │ ├── IntrospectionService.kt │ │ │ ├── NadelExecutionBlueprint.kt │ │ │ ├── NadelFastSchemaTraverser.kt │ │ │ ├── NadelFieldInstruction.kt │ │ │ ├── NadelSchemaTraverserElement.kt │ │ │ ├── NadelSchemaTraverserVisitor.kt │ │ │ ├── NadelTypeRenameInstruction.kt │ │ │ ├── NadelVirtualTypeBlueprintFactory.kt │ │ │ ├── NadelVirtualTypeContext.kt │ │ │ └── hydration │ │ │ │ ├── NadelBatchHydrationMatchStrategy.kt │ │ │ │ ├── NadelHydrationArgument.kt │ │ │ │ ├── NadelHydrationCondition.kt │ │ │ │ └── NadelHydrationStrategy.kt │ │ ├── document │ │ │ └── DocumentPredicates.kt │ │ ├── instrumentation │ │ │ └── NadelInstrumentationTimer.kt │ │ ├── log │ │ │ └── NadelLog.kt │ │ ├── plan │ │ │ ├── NadelExecutionPlan.kt │ │ │ └── NadelExecutionPlanFactory.kt │ │ ├── transform │ │ │ ├── NadelDeepRenameTransform.kt │ │ │ ├── NadelRenameArgumentInputTypesTransform.kt │ │ │ ├── NadelRenameTransform.kt │ │ │ ├── NadelServiceTypeFilterTransform.kt │ │ │ ├── NadelTransform.kt │ │ │ ├── NadelTransformJavaCompat.kt │ │ │ ├── NadelTransformServiceExecutionContext.kt │ │ │ ├── NadelTransformUtil.kt │ │ │ ├── NadelTypeRenameResultTransform.kt │ │ │ ├── artificial │ │ │ │ └── NadelAliasHelper.kt │ │ │ ├── hydration │ │ │ │ ├── NadelHydrationFieldsBuilder.kt │ │ │ │ ├── NadelHydrationInputBuilder.kt │ │ │ │ ├── NadelHydrationTransform.kt │ │ │ │ ├── NadelHydrationUtil.kt │ │ │ │ └── batch │ │ │ │ │ ├── NadelBatchHydrationInputBuilder.kt │ │ │ │ │ ├── NadelBatchHydrationObjectIdFieldBuilder.kt │ │ │ │ │ ├── NadelBatchHydrationTransform.kt │ │ │ │ │ ├── NadelNewBatchHydrationInputBuilder.kt │ │ │ │ │ ├── NadelNewBatchHydrator.kt │ │ │ │ │ ├── NadelResolvedObjectBatch.kt │ │ │ │ │ └── indexing │ │ │ │ │ ├── NadelBatchHydrationIndexBasedIndexer.kt │ │ │ │ │ ├── NadelBatchHydrationIndexKey.kt │ │ │ │ │ ├── NadelBatchHydrationIndexer.kt │ │ │ │ │ └── NadelBatchHydrationObjectIdentifiedIndexer.kt │ │ │ ├── partition │ │ │ │ ├── NadelFieldPartition.kt │ │ │ │ ├── NadelFieldPartitionContext.kt │ │ │ │ ├── NadelFieldPartitionException.kt │ │ │ │ ├── NadelPartitionKeyExtractor.kt │ │ │ │ ├── NadelPartitionListMerger.kt │ │ │ │ ├── NadelPartitionMutationPayloadMerger.kt │ │ │ │ ├── NadelPartitionTransform.kt │ │ │ │ └── NadelPartitionTransformHook.kt │ │ │ ├── query │ │ │ │ ├── DynamicServiceResolution.kt │ │ │ │ ├── NFUtil.kt │ │ │ │ ├── NadelFieldToService.kt │ │ │ │ ├── NadelQueryPath.kt │ │ │ │ ├── NadelQueryTransformer.kt │ │ │ │ └── NadelQueryTransformerJavaCompat.kt │ │ │ ├── result │ │ │ │ ├── NadelResultInstruction.kt │ │ │ │ ├── NadelResultTransformer.kt │ │ │ │ └── json │ │ │ │ │ ├── JsonNode.kt │ │ │ │ │ ├── JsonNodeExtractor.kt │ │ │ │ │ ├── JsonNodes.kt │ │ │ │ │ └── NadelJsonNodeIterator.kt │ │ │ ├── skipInclude │ │ │ │ └── NadelSkipIncludeTransform.kt │ │ │ └── stub │ │ │ │ └── NadelStubTransform.kt │ │ └── util │ │ │ ├── Aliases.kt │ │ │ ├── CollectionUtil.kt │ │ │ ├── GraphQLUtil.kt │ │ │ ├── JsonUtil.kt │ │ │ ├── NadelPseudoSealedType.kt │ │ │ └── Util.kt │ │ ├── error │ │ ├── NadelGraphQLErrorException.kt │ │ └── NadelGraphQLErrorExceptionKotlinCompat.java │ │ ├── hints │ │ ├── AllDocumentVariablesHint.kt │ │ ├── LegacyOperationNamesHint.kt │ │ ├── NadelDeferSupportHint.kt │ │ ├── NadelExecuteOnEngineSchemaHint.kt │ │ ├── NadelHydrationExecutableSourceFields.kt │ │ ├── NadelHydrationFilterObjectTypesHint.kt │ │ ├── NadelSharedTypeRenamesHint.kt │ │ ├── NadelShortCircuitEmptyQueryHint.kt │ │ ├── NadelVirtualTypeSupportHint.kt │ │ └── NewResultMergerAndNamespacedTypename.kt │ │ ├── hooks │ │ ├── NadelCreateServiceExecutionContextParams.kt │ │ ├── NadelExecutionHooks.kt │ │ └── ServiceOrError.kt │ │ ├── instrumentation │ │ ├── ChainedNadelInstrumentation.kt │ │ ├── NadelInstrumentation.kt │ │ └── parameters │ │ │ ├── NadelInstrumentationCreateStateParameters.kt │ │ │ ├── NadelInstrumentationExecuteOperationParameters.kt │ │ │ ├── NadelInstrumentationIsTimingEnabledParameters.kt │ │ │ ├── NadelInstrumentationOnErrorParameters.kt │ │ │ ├── NadelInstrumentationQueryExecutionParameters.kt │ │ │ ├── NadelInstrumentationQueryValidationParameters.kt │ │ │ └── NadelInstrumentationTimingParameters.kt │ │ ├── result │ │ ├── NadelResultMerger.kt │ │ ├── NadelResultPath.kt │ │ ├── NadelResultPathBuilder.kt │ │ ├── NadelResultPathSegment.kt │ │ └── NadelResultTracker.kt │ │ ├── schema │ │ ├── NadelDirectives.kt │ │ ├── NeverWiringFactory.kt │ │ ├── OverallSchemaGenerator.kt │ │ ├── QuerySchemaGenerator.kt │ │ ├── SchemaTransformationHook.kt │ │ ├── ServiceSchemaProblem.kt │ │ └── UnderlyingSchemaGenerator.kt │ │ ├── time │ │ ├── NadelInternalLatencyTracker.kt │ │ ├── NadelInternalLatencyTrackerImpl.kt │ │ └── NadelStopwatch.kt │ │ ├── util │ │ ├── ErrorUtil.kt │ │ ├── GraphQLDefUtil.kt │ │ ├── GraphQLUtil.kt │ │ ├── IteratorUtil.kt │ │ ├── LogUtil.kt │ │ ├── NadelFieldMap.kt │ │ ├── NamespacedUtil.kt │ │ ├── OperationNameUtil.kt │ │ ├── SchemaUtil.kt │ │ ├── TimeUtil.kt │ │ └── TraversalUtil.kt │ │ └── validation │ │ ├── NadelAssignableTypeValidation.kt │ │ ├── NadelEnumValidation.kt │ │ ├── NadelFieldValidation.kt │ │ ├── NadelIdHydrationDefinitionParser.kt │ │ ├── NadelInputObjectValidation.kt │ │ ├── NadelInstructionDefinitionParser.kt │ │ ├── NadelInstructionDefinitionRegistry.kt │ │ ├── NadelInterfaceValidation.kt │ │ ├── NadelInterfaceValidationError.kt │ │ ├── NadelNamespaceValidation.kt │ │ ├── NadelPartitionValidation.kt │ │ ├── NadelSchemaHydrationValidationError.kt │ │ ├── NadelSchemaValidation.kt │ │ ├── NadelSchemaValidationError.kt │ │ ├── NadelSchemaValidationFactory.kt │ │ ├── NadelSchemaValidationHook.kt │ │ ├── NadelSchemaValidationInterimResult.kt │ │ ├── NadelSchemaValidationResult.kt │ │ ├── NadelServiceSchemaElement.kt │ │ ├── NadelStubbedValidation.kt │ │ ├── NadelStubbedValidationError.kt │ │ ├── NadelTypeValidation.kt │ │ ├── NadelTypeWrappingValidation.kt │ │ ├── NadelUnionValidation.kt │ │ ├── NadelValidationContext.kt │ │ ├── NadelVirtualTypeValidation.kt │ │ ├── NadelVirtualTypeValidationError.kt │ │ ├── hydration │ │ ├── NadelDefaultHydrationDefinitionValidation.kt │ │ ├── NadelHydrationArgumentTypeValidation.kt │ │ ├── NadelHydrationArgumentValidation.kt │ │ ├── NadelHydrationConditionValidation.kt │ │ ├── NadelHydrationSourceFieldValidation.kt │ │ ├── NadelHydrationSourceFieldValidation2.kt │ │ ├── NadelHydrationValidation.kt │ │ └── NadelHydrationVirtualTypeValidation.kt │ │ └── util │ │ ├── NadelBuiltInTypes.kt │ │ ├── NadelCombinedTypeUtil.kt │ │ ├── NadelGetReachableTypes.kt │ │ └── NadelSchemaUtil.kt │ └── test │ └── kotlin │ └── graphql │ └── nadel │ ├── Jackson.kt │ ├── NadelSchemasTest.kt │ ├── NadelStopwatchTest.kt │ ├── archunit │ ├── ArchUnitEqualsClassesExactly.kt │ ├── ArchUnitUtil.kt │ ├── ForbiddenGraphQLJavaUsageTest.kt │ ├── NadelPrefixTest.kt │ ├── NadelPseudoSealedTypeKtTest.kt │ └── NioArchTest.kt │ ├── definition │ ├── coordinates │ │ ├── NadelAppliedDirectiveArgumentCoordinatesTest.kt │ │ ├── NadelAppliedDirectiveCoordinatesTest.kt │ │ ├── NadelArgumentCoordinatesTest.kt │ │ ├── NadelDirectiveCoordinatesTest.kt │ │ ├── NadelEnumCoordinatesTest.kt │ │ ├── NadelEnumValueCoordinatesTest.kt │ │ ├── NadelFieldCoordinatesTest.kt │ │ ├── NadelInputObjectCoordinatesTest.kt │ │ ├── NadelInputObjectFieldCoordinatesTest.kt │ │ ├── NadelInterfaceCoordinatesTest.kt │ │ ├── NadelObjectCoordinatesTest.kt │ │ ├── NadelScalarCoordinatesTest.kt │ │ ├── NadelSchemaMemberCoordinatesTest.kt │ │ └── NadelUnionCoordinatesTest.kt │ └── stubbed │ │ └── NadelStubbedDefinitionTest.kt │ ├── engine │ ├── NadelIncrementalResultAccumulatorTest.kt │ ├── NadelIncrementalResultSupportTest.kt │ ├── blueprint │ │ └── NadelVirtualTypeBlueprintFactoryTest.kt │ ├── instrumentation │ │ └── NadelInstrumentationTimerTest.kt │ ├── transform │ │ └── result │ │ │ └── json │ │ │ └── NadelJsonNodeIteratorTest.kt │ └── util │ │ ├── CollectionUtilKtTest.kt │ │ └── GraphQLUtilKtTest.kt │ ├── instrumentation │ ├── ChainedNadelInstrumentationTest.kt │ └── paramaters │ │ └── NadelInstrumentationTimingParametersTest.kt │ ├── result │ └── NadelResultTrackerTest.kt │ ├── schema │ ├── NadelDirectivesTest.kt │ └── OverallSchemaGeneratorTest.kt │ ├── test │ ├── Debug.kt │ ├── Mocking.kt │ ├── NadelTransformAdapter.kt │ └── NadelTransformJavaCompatAdapter.kt │ ├── time │ └── NadelInternalLatencyTrackerImplTest.kt │ ├── transform │ └── NadelTransformJavaCompatTest.kt │ ├── util │ ├── IteratorUtilTest.kt │ ├── SchemaUtilTest.kt │ ├── TraversalUtilKtTest.kt │ └── UnderlyingSchemaGenerator.kt │ └── validation │ ├── NadelEnumValidationTest.kt │ ├── NadelFieldValidationTest.kt │ ├── NadelHydrationArgumentTypeValidationTest.kt │ ├── NadelHydrationValidationTest.kt │ ├── NadelHydrationValidationTest2.kt │ ├── NadelHydrationWhenConditionValidationTest.kt │ ├── NadelInputValidationTest.kt │ ├── NadelInterfaceValidationTest.kt │ ├── NadelNamespaceValidationTest.kt │ ├── NadelPartitionValidationTest.kt │ ├── NadelPolymorphicHydrationValidationTest.kt │ ├── NadelRenameValidationTest.kt │ ├── NadelSchemaValidationTest.kt │ ├── NadelStubbedValidationTest.kt │ ├── NadelTypeValidationTest.kt │ ├── NadelUnionValidationTest.kt │ ├── NadelValidationDefinitionsTest.kt │ ├── NadelValidationTestFixture.kt │ ├── NadelVirtualTypeValidationTest.kt │ ├── hydration │ └── NadelDefaultHydrationDefinitionValidationTest.kt │ └── util │ ├── AssertUtil.kt │ └── NadelBuiltInTypesTest.kt ├── settings.gradle └── test ├── README.md ├── build.gradle.kts └── src └── test ├── java └── graphql │ └── nadel │ └── tests │ └── hooks │ └── JavaAriTransform.java ├── kotlin └── graphql │ └── nadel │ └── tests │ ├── CentralSchemaTesting.kt │ ├── EngineTestHook.kt │ ├── EngineTests.kt │ ├── GatewaySchemaWiringFactory.kt │ ├── Jackson.kt │ ├── JsonAssert.kt │ ├── JsonAssertions.kt │ ├── ProjectConfig.kt │ ├── ServiceValidationException.kt │ ├── TestFixture.kt │ ├── hooks │ ├── HydrationDetailsHook.kt │ ├── `introspection-with-variables-ff-on`.kt │ ├── `java-ari-transforms`.kt │ ├── `large-query-but-not-deep`.kt │ ├── abort-within-instrumentation-will-still-call-enhancing-instrumentation-functions.kt │ ├── all-hydration-fields-are-seen-by-transformer.kt │ ├── ari-argument-in-renamed-object-input-in-hydration.kt │ ├── ari-transforms.kt │ ├── batch-hydration-instruction-hook-returns-null.kt │ ├── batching-absent-source-input.kt │ ├── batching-conditional-hydration-in-abstract-type.kt │ ├── batching-multiple-source-ids-going-to-different-services.kt │ ├── batching-of-hydration-list-with-partition.kt │ ├── batching-single-source-id.kt │ ├── can-delete-fields-and-types.kt │ ├── can-execute-document-with-multiple-operation-definitions.kt │ ├── can-specify-max-introspection-response-size.kt │ ├── chain-input-rename-with-argument-transform.kt │ ├── chain-rename-transform.kt │ ├── chained-instrumentation-works-as-expected.kt │ ├── document-variables-handling.kt │ ├── dynamic-service-resolution-hooks.kt │ ├── exceptions-in-hydration-call-that-fail-with-errors-are-reflected-in-the-result.kt │ ├── exceptions-in-service-execution-call-result-in-graphql-errors-and-call-onerror-instrumentation.kt │ ├── exceptions-in-service-execution-result-completable-future-in-graphql-errors.kt │ ├── execution-id-is-transferred-from-input.kt │ ├── execution-id-is-transferred-from-provider-if-missing-in-input.kt │ ├── execution-is-aborted-when-begin-execute-completes-exceptionally-inside-cf.kt │ ├── execution-is-aborted-when-begin-execute-completes-exceptionally-using-chained-instrumentation.kt │ ├── execution-is-aborted-when-begin-execute-completes-exceptionally.kt │ ├── graphqlcontext-is-present-on-input.kt │ ├── hydration-matching-using-index-with-lists.kt │ ├── instrumentation is called.kt │ ├── legacy-operation-names.kt │ ├── let-jsw-do-jsw-things.kt │ ├── monitor-emits-timings.kt │ ├── namespaced-typename.kt │ ├── new-batching-no-source-inputs.kt │ ├── new-result-merging.kt │ ├── operation-depth-limit.kt │ ├── polymorphic-hydration-hook-using-alias-helper.kt │ ├── polymorphic-hydration-hooks.kt │ ├── polymorphic-hydration-instructions-use-different-inputs.kt │ ├── query-to-one-service-with-execution-input-passed-down.kt │ ├── rejects-multiple-operation-defs-without-explicit-op-name.kt │ ├── remove-fields.kt │ ├── scalar-transforms.kt │ ├── schema-transformation-is-applied.kt │ ├── shared-types-rename.kt │ ├── skip-include-does-not-affect-other-transforms.kt │ ├── transformer-on-hydration-fields.kt │ └── two-transforms-on-a-field.kt │ ├── legacy │ ├── NadelLegacyIntegrationTest.kt │ ├── basic │ │ ├── call with variables inside input objects snapshot.kt │ │ ├── call with variables inside input objects.kt │ │ ├── can execute document with multiple operation definitions snapshot.kt │ │ ├── can execute document with multiple operation definitions.kt │ │ ├── can execute single named operation when operation name is empty snapshot.kt │ │ ├── can execute single named operation when operation name is empty.kt │ │ ├── can execute single named operation when operation name is null snapshot.kt │ │ ├── can execute single named operation when operation name is null.kt │ │ ├── can generate legacy operation names forwarding original name snapshot.kt │ │ ├── can generate legacy operation names forwarding original name.kt │ │ ├── can generate legacy operation names snapshot.kt │ │ ├── can generate legacy operation names.kt │ │ ├── large query but not deep snapshot.kt │ │ ├── large query but not deep.kt │ │ ├── missing null variables are handled snapshot.kt │ │ ├── missing null variables are handled.kt │ │ ├── mutation can be executed snapshot.kt │ │ ├── mutation can be executed.kt │ │ ├── one call to one service snapshot.kt │ │ ├── one call to one service with list result snapshot.kt │ │ ├── one call to one service with list result.kt │ │ ├── one call to one service.kt │ │ ├── operation depth limit snapshot.kt │ │ ├── operation depth limit.kt │ │ ├── operation field count limit snapshot.kt │ │ ├── operation field count limit.kt │ │ ├── query to one service with execution input passed down snapshot.kt │ │ ├── query to one service with execution input passed down.kt │ │ ├── rejects multiple operation defs without explicit op name snapshot.kt │ │ ├── rejects multiple operation defs without explicit op name.kt │ │ ├── service types are completely filtered snapshot.kt │ │ ├── service types are completely filtered.kt │ │ ├── service types are filtered snapshot.kt │ │ ├── service types are filtered.kt │ │ ├── subscription can be executed snapshot.kt │ │ └── subscription can be executed.kt │ ├── chained transforms │ │ ├── ari use case │ │ │ ├── ari argument in renamed input snapshot.kt │ │ │ ├── ari argument in renamed input.kt │ │ │ ├── ari argument in renamed object input in hydration snapshot.kt │ │ │ ├── ari argument in renamed object input in hydration.kt │ │ │ ├── ari argument transform on renamed field snapshot.kt │ │ │ ├── ari argument transform on renamed field.kt │ │ │ ├── ari argument transform snapshot.kt │ │ │ └── ari argument transform.kt │ │ ├── two transforms on a field snapshot.kt │ │ └── two transforms on a field.kt │ ├── deep renames │ │ ├── deep rename inside another rename of type List snapshot.kt │ │ ├── deep rename inside another rename of type List.kt │ │ ├── deep rename inside batch hydration null object snapshot.kt │ │ ├── deep rename inside batch hydration null object.kt │ │ ├── deep rename inside batch hydration snapshot.kt │ │ ├── deep rename inside batch hydration.kt │ │ ├── deep rename inside deep rename snapshot.kt │ │ ├── deep rename inside deep rename.kt │ │ ├── deep rename inside hydration snapshot.kt │ │ ├── deep rename inside hydration.kt │ │ ├── deep rename inside hydrations snapshot.kt │ │ ├── deep rename inside hydrations.kt │ │ ├── deep rename inside list snapshot.kt │ │ ├── deep rename inside list.kt │ │ ├── deep rename inside rename snapshot.kt │ │ ├── deep rename inside rename.kt │ │ ├── deep rename inside renamed type snapshot.kt │ │ ├── deep rename inside renamed type.kt │ │ ├── deep rename nested inside renamed type snapshot.kt │ │ ├── deep rename nested inside renamed type.kt │ │ ├── deep rename not asked for with unions snapshot.kt │ │ ├── deep rename not asked for with unions.kt │ │ ├── deep rename of an object snapshot.kt │ │ ├── deep rename of an object with transformations inside object snapshot.kt │ │ ├── deep rename of an object with transformations inside object.kt │ │ ├── deep rename of an object.kt │ │ ├── deep rename of list of list snapshot.kt │ │ ├── deep rename of list of list.kt │ │ ├── deep rename of list snapshot.kt │ │ ├── deep rename of list.kt │ │ ├── deep rename returns null snapshot.kt │ │ ├── deep rename returns null.kt │ │ ├── deep rename with argument works snapshot.kt │ │ ├── deep rename with argument works.kt │ │ ├── deep rename with interfaces asking typename snapshot.kt │ │ ├── deep rename with interfaces asking typename.kt │ │ ├── deep rename with interfaces snapshot.kt │ │ ├── deep rename with interfaces.kt │ │ ├── deep rename with more interfaces snapshot.kt │ │ ├── deep rename with more interfaces.kt │ │ ├── deep rename with more unions snapshot.kt │ │ ├── deep rename with more unions.kt │ │ ├── deep rename with unions snapshot.kt │ │ ├── deep rename with unions.kt │ │ ├── deep rename works snapshot.kt │ │ ├── deep rename works.kt │ │ ├── two deep renames merged fields with same path and field rename snapshot.kt │ │ ├── two deep renames merged fields with same path and field rename.kt │ │ ├── two deep renames snapshot.kt │ │ └── two deep renames.kt │ ├── document variable handling │ │ ├── inlined all arguments snapshot.kt │ │ ├── inlined all arguments with mixed literals and variables snapshot.kt │ │ ├── inlined all arguments with mixed literals and variables.kt │ │ ├── inlined all arguments with renamed field input is wrapped in a list snapshot.kt │ │ ├── inlined all arguments with renamed field input is wrapped in a list.kt │ │ ├── inlined all arguments with renamed field snapshot.kt │ │ ├── inlined all arguments with renamed field.kt │ │ ├── inlined all arguments.kt │ │ ├── inlined json arguments snapshot.kt │ │ ├── inlined json arguments.kt │ │ ├── input object with json field snapshot.kt │ │ ├── input object with json field.kt │ │ ├── primitive json arguments snapshot.kt │ │ ├── primitive json arguments variables snapshot.kt │ │ ├── primitive json arguments variables.kt │ │ └── primitive json arguments.kt │ ├── dynamic service resolution │ │ ├── dynamic service resolution handles complex fragments snapshot.kt │ │ ├── dynamic service resolution handles complex fragments.kt │ │ ├── dynamic service resolution handles inline fragments from multiple services snapshot.kt │ │ ├── dynamic service resolution handles inline fragments from multiple services.kt │ │ ├── dynamic service resolution multiple services snapshot.kt │ │ ├── dynamic service resolution multiple services with one unmapped node lookup snapshot.kt │ │ ├── dynamic service resolution multiple services with one unmapped node lookup.kt │ │ ├── dynamic service resolution multiple services.kt │ │ ├── dynamic service resolution simple success case snapshot.kt │ │ ├── dynamic service resolution simple success case.kt │ │ ├── dynamic service resolution with no fragments snapshot.kt │ │ ├── dynamic service resolution with no fragments.kt │ │ ├── typename is passed on queries using dynamic resolved services snapshot.kt │ │ └── typename is passed on queries using dynamic resolved services.kt │ ├── errors │ │ ├── errors and no data from a service execution are reflected in the result snapshot.kt │ │ ├── errors and no data from a service execution are reflected in the result.kt │ │ ├── errors and some data from a service execution are reflected in the result snapshot.kt │ │ ├── errors and some data from a service execution are reflected in the result.kt │ │ ├── exceptions in hydration call that fail with errors are reflected in the result snapshot.kt │ │ ├── exceptions in hydration call that fail with errors are reflected in the result.kt │ │ ├── exceptions in service execution call result in graphql errors and call onerror instrumentation snapshot.kt │ │ ├── exceptions in service execution call result in graphql errors and call onerror instrumentation.kt │ │ ├── exceptions in service execution result completable future in graphql errors snapshot.kt │ │ └── exceptions in service execution result completable future in graphql errors.kt │ ├── execution id │ │ ├── execution id is transferred from input snapshot.kt │ │ ├── execution id is transferred from input.kt │ │ ├── execution id is transferred from provider if missing in input snapshot.kt │ │ └── execution id is transferred from provider if missing in input.kt │ ├── extend type │ │ ├── extending types from another service is possible snapshot.kt │ │ ├── extending types from another service is possible with synthetic fields snapshot.kt │ │ ├── extending types from another service is possible with synthetic fields.kt │ │ ├── extending types from another service is possible.kt │ │ ├── extending types via hydration returning a connection snapshot.kt │ │ ├── extending types via hydration returning a connection.kt │ │ ├── extending types via hydration with arguments passed on snapshot.kt │ │ ├── extending types via hydration with arguments passed on.kt │ │ ├── extending types via hydration with variables arguments snapshot.kt │ │ └── extending types via hydration with variables arguments.kt │ ├── field removed │ │ ├── hidden namespaced hydration top level field is removed snapshot.kt │ │ ├── hidden namespaced hydration top level field is removed.kt │ │ ├── hydration top level field is removed snapshot.kt │ │ ├── hydration top level field is removed.kt │ │ ├── namespaced field is removed snapshot.kt │ │ ├── namespaced field is removed with renames snapshot.kt │ │ ├── namespaced field is removed with renames.kt │ │ ├── namespaced field is removed.kt │ │ ├── namespaced hydration top level field is removed snapshot.kt │ │ ├── namespaced hydration top level field is removed.kt │ │ ├── renamed top level field is not removed short circuit hint is on snapshot.kt │ │ ├── renamed top level field is not removed short circuit hint is on.kt │ │ ├── top level field is removed for a subscription snapshot.kt │ │ ├── top level field is removed for a subscription with namespaced field snapshot.kt │ │ ├── top level field is removed for a subscription with namespaced field.kt │ │ ├── top level field is removed for a subscription.kt │ │ ├── top level field is removed hint is off snapshot.kt │ │ ├── top level field is removed hint is off.kt │ │ ├── top level field is removed snapshot.kt │ │ └── top level field is removed.kt │ ├── graphqlcontext │ │ ├── graphqlcontextispresentoninput snapshot.kt │ │ └── graphqlcontextispresentoninput.kt │ ├── hidden │ │ ├── can query non hidden fields snapshot.kt │ │ ├── can query non hidden fields.kt │ │ ├── cannot query hidden fields snapshot.kt │ │ ├── cannot query hidden fields.kt │ │ ├── cannot query hidden top level fields snapshot.kt │ │ ├── cannot query hidden top level fields.kt │ │ ├── introspection does not show hidden fields snapshot.kt │ │ └── introspection does not show hidden fields.kt │ ├── instrumentation │ │ ├── abort beginExecute in CF within instrumentation still calls enhancing instrumentation snapshot.kt │ │ ├── abort beginExecute in CF within instrumentation still calls enhancing instrumentation.kt │ │ ├── abort beginExecute within instrumentation still calls enhancing instrumentation snapshot.kt │ │ ├── abort beginExecute within instrumentation still calls enhancing instrumentation.kt │ │ ├── abort beginQueryExecution within instrumentation still calls enhancing instrumentation snapshot.kt │ │ ├── abort beginQueryExecution within instrumentation still calls enhancing instrumentation.kt │ │ ├── abort beginValidation within instrumentation still calls enhancing instrumentation snapshot.kt │ │ ├── abort beginValidation within instrumentation still calls enhancing instrumentation.kt │ │ ├── chained instrumentation works as expected snapshot.kt │ │ ├── chained instrumentation works as expected.kt │ │ ├── execution is aborted when beginExecute completes exceptionally inside cf snapshot.kt │ │ ├── execution is aborted when beginExecute completes exceptionally inside cf.kt │ │ ├── execution is aborted when beginExecute completes exceptionally snapshot.kt │ │ ├── execution is aborted when beginExecute completes exceptionally using chained instrumentation snapshot.kt │ │ ├── execution is aborted when beginExecute completes exceptionally using chained instrumentation.kt │ │ ├── execution is aborted when beginExecute completes exceptionally.kt │ │ ├── instrumentation is called snapshot.kt │ │ └── instrumentation is called.kt │ ├── introspection │ │ ├── can ask for query typename snapshot.kt │ │ ├── can ask for query typename.kt │ │ ├── can specify max introspection response size snapshot.kt │ │ ├── can specify max introspection response size.kt │ │ ├── if there are a mix of system fields and normal fields it works snapshot.kt │ │ ├── if there are a mix of system fields and normal fields it works.kt │ │ ├── introspection can be performed even with fragments snapshot.kt │ │ ├── introspection can be performed even with fragments.kt │ │ ├── introspection with variables FF on snapshot.kt │ │ ├── introspection with variables FF on.kt │ │ ├── no introspections on subscriptions snapshot.kt │ │ └── no introspections on subscriptions.kt │ ├── java-compat │ │ ├── java ari transform snapshot.kt │ │ └── java ari transform.kt │ ├── monitor │ │ ├── monitor emits timings snapshot.kt │ │ └── monitor emits timings.kt │ ├── namespaced │ │ ├── aliased typename is wiped when other data fails snapshot.kt │ │ ├── aliased typename is wiped when other data fails.kt │ │ ├── both of the namespaced services returns error snapshot.kt │ │ ├── both of the namespaced services returns error.kt │ │ ├── multiple typename is kept when nothing else is asked for snapshot.kt │ │ ├── multiple typename is kept when nothing else is asked for.kt │ │ ├── multiple typenames are wiped when other data fails snapshot.kt │ │ ├── multiple typenames are wiped when other data fails.kt │ │ ├── mutation with two services sharing a namespaced field snapshot.kt │ │ ├── mutation with two services sharing a namespaced field.kt │ │ ├── namespaced result map has correct entries on partial failure snapshot.kt │ │ ├── namespaced result map has correct entries on partial failure.kt │ │ ├── not nullable namespaced child has null snapshot.kt │ │ ├── not nullable namespaced child has null.kt │ │ ├── not nullable namespaced child is absent snapshot.kt │ │ ├── not nullable namespaced child is absent.kt │ │ ├── one of the namespaced services returns error reversed snapshot.kt │ │ ├── one of the namespaced services returns error reversed.kt │ │ ├── one of the namespaced services returns error snapshot.kt │ │ ├── one of the namespaced services returns error.kt │ │ ├── query with namespaced fields that have matching subfields snapshot.kt │ │ ├── query with namespaced fields that have matching subfields.kt │ │ ├── query with two services sharing a namespaced field and a non namespaced top level field snapshot.kt │ │ ├── query with two services sharing a namespaced field and a non namespaced top level field.kt │ │ ├── query with two services sharing a namespaced field fragment query snapshot.kt │ │ ├── query with two services sharing a namespaced field fragment query.kt │ │ ├── query with two services sharing a namespaced field snapshot.kt │ │ ├── query with two services sharing a namespaced field.kt │ │ ├── typename is kept when data is partially returned snapshot.kt │ │ ├── typename is kept when data is partially returned.kt │ │ ├── typename is kept when nothing else is asked for snapshot.kt │ │ ├── typename is kept when nothing else is asked for.kt │ │ ├── typename is passed on namespaced fields snapshot.kt │ │ ├── typename is passed on namespaced fields.kt │ │ ├── typename is resolved even when namespaced type is extended in declaring service snapshot.kt │ │ ├── typename is resolved even when namespaced type is extended in declaring service.kt │ │ ├── typename is resolved even when no fields are queried from declaring service snapshot.kt │ │ ├── typename is resolved even when no fields are queried from declaring service.kt │ │ ├── typename is resolved even when there are multiple services declaring namespaced type snapshot.kt │ │ ├── typename is resolved even when there are multiple services declaring namespaced type.kt │ │ ├── typename is resolved on namespaced fields snapshot.kt │ │ ├── typename is resolved on namespaced fields.kt │ │ ├── typename is resolved when namespaced field and type are defined in different services snapshot.kt │ │ ├── typename is resolved when namespaced field and type are defined in different services.kt │ │ ├── typename is sent only to service that owns namespace type snapshot.kt │ │ ├── typename is sent only to service that owns namespace type.kt │ │ ├── typename is sent owning service even when namespaced field and type are defined in different services snapshot.kt │ │ ├── typename is sent owning service even when namespaced field and type are defined in different services.kt │ │ ├── typename is sent owning service even when type is extended in it snapshot.kt │ │ ├── typename is sent owning service even when type is extended in it.kt │ │ ├── typename is sent to owning service even when no fields are queried snapshot.kt │ │ ├── typename is sent to owning service even when no fields are queried.kt │ │ ├── typename is wiped when other data fails includes not nullable field snapshot.kt │ │ ├── typename is wiped when other data fails includes not nullable field.kt │ │ ├── typename is wiped when other data fails snapshot.kt │ │ └── typename is wiped when other data fails.kt │ ├── new hydration │ │ ├── able to ask for field and use same field as hydration source snapshot.kt │ │ ├── able to ask for field and use same field as hydration source.kt │ │ ├── abstract types │ │ │ ├── no object fields in the result are backed a batch hydration snapshot.kt │ │ │ ├── no object fields in the result are backed a batch hydration.kt │ │ │ ├── no object fields in the result are backed a hydration snapshot.kt │ │ │ ├── no object fields in the result are backed a hydration.kt │ │ │ ├── some object fields in the result are backed a batch hydration snapshot.kt │ │ │ ├── some object fields in the result are backed a batch hydration.kt │ │ │ ├── some object fields in the result are backed a hydration snapshot.kt │ │ │ ├── some object fields in the result are backed a hydration.kt │ │ │ ├── some renamed object types have fields in the result are backed a batch hydration snapshot.kt │ │ │ ├── some renamed object types have fields in the result are backed a batch hydration.kt │ │ │ ├── some renamed object types have fields in the result are backed a hydration snapshot.kt │ │ │ └── some renamed object types have fields in the result are backed a hydration.kt │ │ ├── all hydration fields are seen by transformer snapshot.kt │ │ ├── all hydration fields are seen by transformer.kt │ │ ├── basic conditional hydration with false equals condition snapshot.kt │ │ ├── basic conditional hydration with false equals condition.kt │ │ ├── basic conditional hydration with false matches condition snapshot.kt │ │ ├── basic conditional hydration with false matches condition.kt │ │ ├── basic conditional hydration with false startsWith condition snapshot.kt │ │ ├── basic conditional hydration with false startsWith condition.kt │ │ ├── basic conditional hydration with true equals condition snapshot.kt │ │ ├── basic conditional hydration with true equals condition.kt │ │ ├── basic conditional hydration with true matches condition snapshot.kt │ │ ├── basic conditional hydration with true matches condition.kt │ │ ├── basic conditional hydration with true startsWith condition snapshot.kt │ │ ├── basic conditional hydration with true startsWith condition.kt │ │ ├── basic hydration directive based snapshot.kt │ │ ├── basic hydration directive based.kt │ │ ├── basic hydration snapshot.kt │ │ ├── basic hydration with actor field rename snapshot.kt │ │ ├── basic hydration with actor field rename.kt │ │ ├── basic hydration with default array argument values snapshot.kt │ │ ├── basic hydration with default array argument values.kt │ │ ├── basic hydration with default boolean argument values snapshot.kt │ │ ├── basic hydration with default boolean argument values.kt │ │ ├── basic hydration with default int argument values snapshot.kt │ │ ├── basic hydration with default int argument values.kt │ │ ├── basic hydration with default null argument values snapshot.kt │ │ ├── basic hydration with default null argument values.kt │ │ ├── basic hydration with default object argument values snapshot.kt │ │ ├── basic hydration with default object argument values.kt │ │ ├── basic hydration with default string argument values snapshot.kt │ │ ├── basic hydration with default string argument values.kt │ │ ├── basic hydration with static arg array snapshot.kt │ │ ├── basic hydration with static arg array.kt │ │ ├── basic hydration with static arg boolean snapshot.kt │ │ ├── basic hydration with static arg boolean.kt │ │ ├── basic hydration with static arg float snapshot.kt │ │ ├── basic hydration with static arg float.kt │ │ ├── basic hydration with static arg integer snapshot.kt │ │ ├── basic hydration with static arg integer.kt │ │ ├── basic hydration with static arg object array snapshot.kt │ │ ├── basic hydration with static arg object array.kt │ │ ├── basic hydration with static arg object snapshot.kt │ │ ├── basic hydration with static arg object.kt │ │ ├── basic hydration with static args snapshot.kt │ │ ├── basic hydration with static args.kt │ │ ├── basic hydration.kt │ │ ├── batch hydration input is absent snapshot.kt │ │ ├── batch hydration input is absent.kt │ │ ├── batch hydration input is null snapshot.kt │ │ ├── batch hydration input is null.kt │ │ ├── batch hydration instruction hook returns null snapshot.kt │ │ ├── batch hydration instruction hook returns null.kt │ │ ├── batch hydration null source object snapshot.kt │ │ ├── batch hydration null source object.kt │ │ ├── batch hydration with renamed actor field snapshot.kt │ │ ├── batch hydration with renamed actor field.kt │ │ ├── batched hydration query with a synthetic field snapshot.kt │ │ ├── batched hydration query with a synthetic field.kt │ │ ├── batched hydration with default array argument values snapshot.kt │ │ ├── batched hydration with default array argument values.kt │ │ ├── batched hydration with default boolean argument values snapshot.kt │ │ ├── batched hydration with default boolean argument values.kt │ │ ├── batched hydration with default int argument values snapshot.kt │ │ ├── batched hydration with default int argument values.kt │ │ ├── batched hydration with default null argument values snapshot.kt │ │ ├── batched hydration with default null argument values.kt │ │ ├── batched hydration with default object argument values snapshot.kt │ │ ├── batched hydration with default object argument values.kt │ │ ├── batched hydration with default string argument values snapshot.kt │ │ ├── batched hydration with default string argument values.kt │ │ ├── batching of hydration list snapshot.kt │ │ ├── batching of hydration list with flattened arguments snapshot.kt │ │ ├── batching of hydration list with flattened arguments.kt │ │ ├── batching of hydration list with partition snapshot.kt │ │ ├── batching of hydration list with partition.kt │ │ ├── batching of hydration list.kt │ │ ├── batching │ │ │ ├── batching absent source input snapshot.kt │ │ │ ├── batching absent source input.kt │ │ │ ├── batching conditional hydration accepts true condition after a false condition snapshot.kt │ │ │ ├── batching conditional hydration accepts true condition after a false condition.kt │ │ │ ├── batching conditional hydration in abstract type snapshot.kt │ │ │ ├── batching conditional hydration in abstract type.kt │ │ │ ├── batching conditional hydration with false conditions snapshot.kt │ │ │ ├── batching conditional hydration with false conditions.kt │ │ │ ├── batching conditional hydration with list condition field snapshot.kt │ │ │ ├── batching conditional hydration with list condition field.kt │ │ │ ├── batching conditional hydration with multiple true conditions takes first snapshot.kt │ │ │ ├── batching conditional hydration with multiple true conditions takes first.kt │ │ │ ├── batching conditional hydration works when equals condition field is null snapshot.kt │ │ │ ├── batching conditional hydration works when equals condition field is null.kt │ │ │ ├── batching conditional hydration works when matches condition field is null snapshot.kt │ │ │ ├── batching conditional hydration works when matches condition field is null.kt │ │ │ ├── batching conditional hydration works when startsWith condition field is null snapshot.kt │ │ │ ├── batching conditional hydration works when startsWith condition field is null.kt │ │ │ ├── batching conditional hydration works with int type snapshot.kt │ │ │ ├── batching conditional hydration works with int type.kt │ │ │ ├── batching conditional hydration works with matches condition snapshot.kt │ │ │ ├── batching conditional hydration works with matches condition.kt │ │ │ ├── batching conditional hydration works with startsWith condition snapshot.kt │ │ │ ├── batching conditional hydration works with startsWith condition.kt │ │ │ ├── batching multiple source ids going to different services snapshot.kt │ │ │ ├── batching multiple source ids going to different services.kt │ │ │ ├── batching no source inputs snapshot.kt │ │ │ ├── batching no source inputs.kt │ │ │ ├── batching null source input object snapshot.kt │ │ │ ├── batching null source input object.kt │ │ │ ├── batching single source id snapshot.kt │ │ │ └── batching single source id.kt │ │ ├── can generate legacy operation name on batch hydration for specific service snapshot.kt │ │ ├── can generate legacy operation name on batch hydration for specific service.kt │ │ ├── can generate legacy operation name on batch hydration snapshot.kt │ │ ├── can generate legacy operation name on batch hydration.kt │ │ ├── can generate legacy operation name on hydration snapshot.kt │ │ ├── can generate legacy operation name on hydration.kt │ │ ├── complex identified by │ │ │ ├── complex identified by doesnt use all input fields in the inputIdentifiedBy argument snapshot.kt │ │ │ ├── complex identified by doesnt use all input fields in the inputIdentifiedBy argument.kt │ │ │ ├── complex identified by hydration batching returns null batch snapshot.kt │ │ │ ├── complex identified by hydration batching returns null batch.kt │ │ │ ├── complex identified by input is absent snapshot.kt │ │ │ ├── complex identified by input is absent.kt │ │ │ ├── complex identified by input is null snapshot.kt │ │ │ ├── complex identified by input is null.kt │ │ │ ├── complex identified by snapshot.kt │ │ │ ├── complex identified by uses same source for hydrations and a deep rename snapshot.kt │ │ │ ├── complex identified by uses same source for hydrations and a deep rename.kt │ │ │ ├── complex identified by uses same source for hydrations snapshot.kt │ │ │ ├── complex identified by uses same source for hydrations.kt │ │ │ ├── complex identified by with indexed hydration snapshot.kt │ │ │ ├── complex identified by with indexed hydration.kt │ │ │ ├── complex identified by with list source id snapshot.kt │ │ │ ├── complex identified by with list source id.kt │ │ │ ├── complex identified by with rename snapshot.kt │ │ │ ├── complex identified by with rename.kt │ │ │ ├── complex identified by with some null source ids snapshot.kt │ │ │ ├── complex identified by with some null source ids.kt │ │ │ ├── complex identified by.kt │ │ │ ├── complex input object with indexed hydration snapshot.kt │ │ │ └── complex input object with indexed hydration.kt │ │ ├── conditional hydration equals predicate works with integer type snapshot.kt │ │ ├── conditional hydration equals predicate works with integer type.kt │ │ ├── conditional hydration matches predicate works with id type snapshot.kt │ │ ├── conditional hydration matches predicate works with id type.kt │ │ ├── conditional hydration startsWith predicate works with id type snapshot.kt │ │ ├── conditional hydration startsWith predicate works with id type.kt │ │ ├── expecting one child error on extensive field argument passed to hydration snapshot.kt │ │ ├── expecting one child error on extensive field argument passed to hydration.kt │ │ ├── expecting one child error on extensive field argument passed to synthetic hydration snapshot.kt │ │ ├── expecting one child error on extensive field argument passed to synthetic hydration.kt │ │ ├── hydration batching returns null snapshot.kt │ │ ├── hydration batching returns null.kt │ │ ├── hydration call forwards error snapshot.kt │ │ ├── hydration call forwards error.kt │ │ ├── hydration call over itself with renamed types snapshot.kt │ │ ├── hydration call over itself with renamed types.kt │ │ ├── hydration call with argument value from original field argument snapshot.kt │ │ ├── hydration call with argument value from original field argument.kt │ │ ├── hydration call with fragments in the hydrated part and synthetic field snapshot.kt │ │ ├── hydration call with fragments in the hydrated part and synthetic field.kt │ │ ├── hydration call with fragments in the hydrated part snapshot.kt │ │ ├── hydration call with fragments in the hydrated part.kt │ │ ├── hydration call with two argument values from original field arguments snapshot.kt │ │ ├── hydration call with two argument values from original field arguments.kt │ │ ├── hydration from field in interface snapshot.kt │ │ ├── hydration from field in interface with type rename snapshot.kt │ │ ├── hydration from field in interface with type rename.kt │ │ ├── hydration from field in interface.kt │ │ ├── hydration input is absent snapshot.kt │ │ ├── hydration input is absent.kt │ │ ├── hydration input is empty list snapshot.kt │ │ ├── hydration input is empty list.kt │ │ ├── hydration input is null snapshot.kt │ │ ├── hydration input is null.kt │ │ ├── hydration inside a renamed field snapshot.kt │ │ ├── hydration inside a renamed field.kt │ │ ├── hydration list input snapshot.kt │ │ ├── hydration list input.kt │ │ ├── hydration list with batching forwards error snapshot.kt │ │ ├── hydration list with batching forwards error.kt │ │ ├── hydration list with batching snapshot.kt │ │ ├── hydration list with batching.kt │ │ ├── hydration list with one element snapshot.kt │ │ ├── hydration list with one element.kt │ │ ├── hydration with interfaces asking typename snapshot.kt │ │ ├── hydration with interfaces asking typename.kt │ │ ├── hydration with interfaces no source id snapshot.kt │ │ ├── hydration with interfaces no source id.kt │ │ ├── hydration with interfaces snapshot.kt │ │ ├── hydration with interfaces.kt │ │ ├── hydration with more interfaces snapshot.kt │ │ ├── hydration with more interfaces.kt │ │ ├── hydration with multiple conditions ignores false conditions snapshot.kt │ │ ├── hydration with multiple conditions ignores false conditions.kt │ │ ├── hydration with multiple true conditions takes first snapshot.kt │ │ ├── hydration with multiple true conditions takes first.kt │ │ ├── hydration within hydration with variables snapshot.kt │ │ ├── hydration within hydration with variables.kt │ │ ├── hydration works when an ancestor field has been renamed snapshot.kt │ │ ├── hydration works when an ancestor field has been renamed.kt │ │ ├── hydration works when equals condition field is null snapshot.kt │ │ ├── hydration works when equals condition field is null.kt │ │ ├── hydration works when matches condition field is null snapshot.kt │ │ ├── hydration works when matches condition field is null.kt │ │ ├── hydration works when startswith condition field is null snapshot.kt │ │ ├── hydration works when startswith condition field is null.kt │ │ ├── index hydration all null ids snapshot.kt │ │ ├── index hydration all null ids.kt │ │ ├── index hydration with partitioned inputs snapshot.kt │ │ ├── index hydration with partitioned inputs.kt │ │ ├── index │ │ │ ├── hydration matching using index one batch returns errors snapshot.kt │ │ │ ├── hydration matching using index one batch returns errors.kt │ │ │ ├── hydration matching using index result size invariant mismatch snapshot.kt │ │ │ ├── hydration matching using index result size invariant mismatch.kt │ │ │ ├── hydration matching using index returning errors snapshot.kt │ │ │ ├── hydration matching using index returning errors.kt │ │ │ ├── hydration matching using index returning null elements snapshot.kt │ │ │ ├── hydration matching using index returning null elements.kt │ │ │ ├── hydration matching using index returning null snapshot.kt │ │ │ ├── hydration matching using index returning null.kt │ │ │ ├── hydration matching using index snapshot.kt │ │ │ ├── hydration matching using index with lists snapshot.kt │ │ │ ├── hydration matching using index with lists with hydration field not exposed snapshot.kt │ │ │ ├── hydration matching using index with lists with hydration field not exposed.kt │ │ │ ├── hydration matching using index with lists.kt │ │ │ ├── hydration matching using index with null input nodes snapshot.kt │ │ │ ├── hydration matching using index with null input nodes.kt │ │ │ └── hydration matching using index.kt │ │ ├── multiple conditional hydrations with different source fields snapshot.kt │ │ ├── multiple conditional hydrations with different source fields.kt │ │ ├── nested list hydration under a renamed top level field snapshot.kt │ │ ├── nested list hydration under a renamed top level field.kt │ │ ├── new batched with null value in source array snapshot.kt │ │ ├── new batched with null value in source array.kt │ │ ├── nullable argument for hydration is missing snapshot.kt │ │ ├── nullable argument for hydration is missing.kt │ │ ├── one hydration call with fragments defined snapshot.kt │ │ ├── one hydration call with fragments defined.kt │ │ ├── one hydration call with input value having longer path snapshot.kt │ │ ├── one hydration call with input value having longer path.kt │ │ ├── one hydration call with longer path arguments and merged fields snapshot.kt │ │ ├── one hydration call with longer path arguments and merged fields.kt │ │ ├── one hydration call with variables defined snapshot.kt │ │ ├── one hydration call with variables defined.kt │ │ ├── one synthetic hydration call with longer path arguments and merged fields and renamed type snapshot.kt │ │ ├── one synthetic hydration call with longer path arguments and merged fields and renamed type.kt │ │ ├── polymorphic hydrations │ │ │ ├── batch polymorphic hydration actor fields are in the same service return types implement same interface snapshot.kt │ │ │ ├── batch polymorphic hydration actor fields are in the same service return types implement same interface.kt │ │ │ ├── batch polymorphic hydration actor fields are in the same service snapshot.kt │ │ │ ├── batch polymorphic hydration actor fields are in the same service.kt │ │ │ ├── batch polymorphic hydration return null in array snapshot.kt │ │ │ ├── batch polymorphic hydration return null in array with error snapshot.kt │ │ │ ├── batch polymorphic hydration return null in array with error.kt │ │ │ ├── batch polymorphic hydration return null in array.kt │ │ │ ├── batch polymorphic hydration return top level null and error snapshot.kt │ │ │ ├── batch polymorphic hydration return top level null and error.kt │ │ │ ├── batch polymorphic hydration return top level null snapshot.kt │ │ │ ├── batch polymorphic hydration return top level null.kt │ │ │ ├── batch polymorphic hydration snapshot.kt │ │ │ ├── batch polymorphic hydration when hook returns null snapshot.kt │ │ │ ├── batch polymorphic hydration when hook returns null.kt │ │ │ ├── batch polymorphic hydration where only one type is queried snapshot.kt │ │ │ ├── batch polymorphic hydration where only one type is queried.kt │ │ │ ├── batch polymorphic hydration with conditions snapshot.kt │ │ │ ├── batch polymorphic hydration with conditions.kt │ │ │ ├── batch polymorphic hydration with interfaces snapshot.kt │ │ │ ├── batch polymorphic hydration with interfaces.kt │ │ │ ├── batch polymorphic hydration with lots of renames snapshot.kt │ │ │ ├── batch polymorphic hydration with lots of renames.kt │ │ │ ├── batch polymorphic hydration with rename snapshot.kt │ │ │ ├── batch polymorphic hydration with rename.kt │ │ │ ├── batch polymorphic hydration with unions snapshot.kt │ │ │ ├── batch polymorphic hydration with unions.kt │ │ │ ├── batch polymorphic hydration.kt │ │ │ ├── batch polymorphic hydrations are executed in parallel snapshot.kt │ │ │ ├── batch polymorphic hydrations are executed in parallel.kt │ │ │ ├── polymorphic hydration instructions use different inputs snapshot.kt │ │ │ ├── polymorphic hydration instructions use different inputs.kt │ │ │ ├── solitary polymorphic hydration snapshot.kt │ │ │ ├── solitary polymorphic hydration when hook returns null snapshot.kt │ │ │ ├── solitary polymorphic hydration when hook returns null.kt │ │ │ └── solitary polymorphic hydration.kt │ │ ├── query with hydrated interfaces work as expected snapshot.kt │ │ ├── query with hydrated interfaces work as expected.kt │ │ ├── query with hydration that fail with errors are reflected in the result snapshot.kt │ │ ├── query with hydration that fail with errors are reflected in the result.kt │ │ ├── query with synthetic hydration that fail with errors are reflected in the result snapshot.kt │ │ ├── query with synthetic hydration that fail with errors are reflected in the result.kt │ │ ├── query with three nested hydrations and simple data and lots of renames snapshot.kt │ │ ├── query with three nested hydrations and simple data and lots of renames.kt │ │ ├── query with three nested hydrations and simple data snapshot.kt │ │ ├── query with three nested hydrations and simple data.kt │ │ ├── query with three nested hydrations and synthetic fields snapshot.kt │ │ ├── query with three nested hydrations and synthetic fields.kt │ │ ├── query with three nested hydrations snapshot.kt │ │ ├── query with three nested hydrations.kt │ │ ├── renamed and hydrated query using same underlying source snapshot.kt │ │ ├── renamed and hydrated query using same underlying source.kt │ │ ├── repeated hydrated fields on the same level overlapping fields in the query snapshot.kt │ │ ├── repeated hydrated fields on the same level overlapping fields in the query.kt │ │ ├── repeated hydrated fields on the same level snapshot.kt │ │ ├── repeated hydrated fields on the same level when using batch hydration snapshot.kt │ │ ├── repeated hydrated fields on the same level when using batch hydration.kt │ │ ├── repeated hydrated fields on the same level.kt │ │ ├── same source for hydrations snapshot.kt │ │ ├── same source for hydrations.kt │ │ ├── same source for nested hydrations and a rename snapshot.kt │ │ ├── same source for nested hydrations and a rename.kt │ │ ├── simple hydration query with a synthetic field snapshot.kt │ │ ├── simple hydration query with a synthetic field.kt │ │ ├── simple synthetic hydration with one service and type renaming snapshot.kt │ │ ├── simple synthetic hydration with one service and type renaming.kt │ │ ├── synthetic hydration batching returns null snapshot.kt │ │ ├── synthetic hydration batching returns null.kt │ │ ├── synthetic hydration call over itself within renamed types snapshot.kt │ │ ├── synthetic hydration call over itself within renamed types.kt │ │ ├── synthetic hydration call with two argument values from original field arguments snapshot.kt │ │ ├── synthetic hydration call with two argument values from original field arguments.kt │ │ ├── synthetic hydration forwards error snapshot.kt │ │ ├── synthetic hydration forwards error.kt │ │ ├── synthetic hydration input is empty list snapshot.kt │ │ ├── synthetic hydration input is empty list.kt │ │ ├── synthetic hydration input is null snapshot.kt │ │ ├── synthetic hydration input is null.kt │ │ ├── synthetic hydration list with batching forwards error snapshot.kt │ │ ├── synthetic hydration list with batching forwards error.kt │ │ ├── synthetic hydration with renamed type snapshot.kt │ │ ├── synthetic hydration with renamed type.kt │ │ ├── synthetic hydration works when an ancestor field has been renamed snapshot.kt │ │ ├── synthetic hydration works when an ancestor field has been renamed.kt │ │ ├── top level field data returns null in batched synthetic hydration snapshot.kt │ │ ├── top level field data returns null in batched synthetic hydration.kt │ │ ├── top level field data returns null in synthetic hydration snapshot.kt │ │ ├── top level field data returns null in synthetic hydration.kt │ │ ├── top level field is null in batched synthetic hydration snapshot.kt │ │ ├── top level field is null in batched synthetic hydration.kt │ │ ├── top level field is null in synthetic hydration snapshot.kt │ │ ├── top level field is null in synthetic hydration.kt │ │ ├── transformer on hydration fields snapshot.kt │ │ └── transformer on hydration fields.kt │ ├── oneOf │ │ ├── oneOf fails when invalid variables are passed snapshot.kt │ │ ├── oneOf fails when invalid variables are passed.kt │ │ ├── oneOf fails when nested input snapshot.kt │ │ ├── oneOf fails when nested input.kt │ │ ├── oneOf fails when no values are passed snapshot.kt │ │ ├── oneOf fails when no values are passed.kt │ │ ├── oneOf fails when null value is passed snapshot.kt │ │ ├── oneOf fails when null value is passed.kt │ │ ├── oneOf fails when values are passed snapshot.kt │ │ ├── oneOf fails when values are passed.kt │ │ ├── oneOf successful snapshot.kt │ │ └── oneOf successful.kt │ ├── polymorphism │ │ ├── fragment referenced twice from inside query and inside another fragment snapshot.kt │ │ ├── fragment referenced twice from inside query and inside another fragment.kt │ │ ├── lower level interface fields get typename added snapshot.kt │ │ ├── lower level interface fields get typename added.kt │ │ ├── lower level interface fields which are renamed get typename added snapshot.kt │ │ ├── lower level interface fields which are renamed get typename added.kt │ │ ├── query with pass through interfaces and unions that DONT have typename in them work as expected snapshot.kt │ │ ├── query with pass through interfaces and unions that DONT have typename in them work as expected.kt │ │ ├── query with pass through interfaces and unions that have MIXED typename in them work as expected snapshot.kt │ │ ├── query with pass through interfaces and unions that have MIXED typename in them work as expected.kt │ │ ├── query with pass through interfaces and unions that have aliased typename in fragments work as expected snapshot.kt │ │ ├── query with pass through interfaces and unions that have aliased typename in fragments work as expected.kt │ │ ├── query with pass through interfaces and unions that have typename in fragments work as expected snapshot.kt │ │ ├── query with pass through interfaces and unions that have typename in fragments work as expected.kt │ │ ├── query with pass through interfaces and unions that have typename in them work as expected snapshot.kt │ │ ├── query with pass through interfaces and unions that have typename in them work as expected.kt │ │ ├── two top level fields with a fragment snapshot.kt │ │ ├── two top level fields with a fragment.kt │ │ ├── typename is correctly passed on and artificial typename is removed snapshot.kt │ │ └── typename is correctly passed on and artificial typename is removed.kt │ ├── renames │ │ ├── a lot of renames snapshot.kt │ │ ├── a lot of renames.kt │ │ ├── chain rename transform snapshot.kt │ │ ├── chain rename transform with type rename snapshot.kt │ │ ├── chain rename transform with type rename.kt │ │ ├── chain rename transform.kt │ │ ├── correct typename is returned snapshot.kt │ │ ├── correct typename is returned.kt │ │ ├── fragment type rename and field rename works as expected snapshot.kt │ │ ├── fragment type rename and field rename works as expected.kt │ │ ├── inline fragment type rename and field rename works as expected snapshot.kt │ │ ├── inline fragment type rename and field rename works as expected.kt │ │ ├── interface rename direct works as expected snapshot.kt │ │ ├── interface rename direct works as expected.kt │ │ ├── interface rename with fragments works as expected snapshot.kt │ │ ├── interface rename with fragments works as expected.kt │ │ ├── let jsw do jsw things snapshot.kt │ │ ├── let jsw do jsw things.kt │ │ ├── nested renamed types snapshot.kt │ │ ├── nested renamed types.kt │ │ ├── query to two services with field rename snapshot.kt │ │ ├── query to two services with field rename.kt │ │ ├── rename inside hydration snapshot.kt │ │ ├── rename inside hydration.kt │ │ ├── rename inside multiple hydrations snapshot.kt │ │ ├── rename inside multiple hydrations.kt │ │ ├── rename inside renamed type snapshot.kt │ │ ├── rename inside renamed type.kt │ │ ├── rename nested inside renamed type snapshot.kt │ │ ├── rename nested inside renamed type.kt │ │ ├── rename on shared abstract type snapshot.kt │ │ ├── rename on shared abstract type.kt │ │ ├── rename with first last path element returning null snapshot.kt │ │ ├── rename with first last path element returning null.kt │ │ ├── rename with first path element returning null snapshot.kt │ │ ├── rename with first path element returning null.kt │ │ ├── rename with interfaces asking typename snapshot.kt │ │ ├── rename with interfaces asking typename.kt │ │ ├── rename with interfaces snapshot.kt │ │ ├── rename with interfaces.kt │ │ ├── rename with more interfaces snapshot.kt │ │ ├── rename with more interfaces.kt │ │ ├── renamed field with normal field using same source snapshot.kt │ │ ├── renamed field with normal field using same source.kt │ │ ├── renamed list inside renamed list snapshot.kt │ │ ├── renamed list inside renamed list.kt │ │ ├── renamed top level field with argument snapshot.kt │ │ ├── renamed top level field with argument.kt │ │ ├── simple type rename and field rename works as expected snapshot.kt │ │ ├── simple type rename and field rename works as expected.kt │ │ ├── string field rename snapshot.kt │ │ ├── string field rename.kt │ │ ├── types │ │ │ ├── renamed type in interface snapshot.kt │ │ │ ├── renamed type in interface.kt │ │ │ ├── renamed type in union declared in another service snapshot.kt │ │ │ ├── renamed type in union declared in another service.kt │ │ │ ├── renamed type in union declared in same service snapshot.kt │ │ │ ├── renamed type in union declared in same service.kt │ │ │ ├── renamed type in union snapshot.kt │ │ │ ├── renamed type in union.kt │ │ │ ├── renamed type inside batch hydration snapshot.kt │ │ │ ├── renamed type inside batch hydration.kt │ │ │ ├── renamed type inside deep rename snapshot.kt │ │ │ ├── renamed type inside deep rename that returns null snapshot.kt │ │ │ ├── renamed type inside deep rename that returns null.kt │ │ │ ├── renamed type inside deep rename.kt │ │ │ ├── renamed type inside hydration snapshot.kt │ │ │ ├── renamed type inside hydration that returns null snapshot.kt │ │ │ ├── renamed type inside hydration that returns null.kt │ │ │ ├── renamed type inside hydration.kt │ │ │ ├── renamed type inside list snapshot.kt │ │ │ ├── renamed type inside list.kt │ │ │ ├── renamed type inside renamed field snapshot.kt │ │ │ ├── renamed type inside renamed field.kt │ │ │ ├── renamed type is shared even deeper snapshot.kt │ │ │ ├── renamed type is shared even deeper.kt │ │ │ ├── repeated fragments with renamed types snapshot.kt │ │ │ └── repeated fragments with renamed types.kt │ │ ├── union rename direct works as expected snapshot.kt │ │ ├── union rename direct works as expected.kt │ │ ├── variable referenced input types rename works as expected snapshot.kt │ │ └── variable referenced input types rename works as expected.kt │ ├── result merging │ │ ├── calls to multiple services are merged snapshot.kt │ │ ├── calls to multiple services are merged.kt │ │ ├── correct selection set on failed result snapshot.kt │ │ ├── correct selection set on failed result.kt │ │ ├── correct selection set on partially failed result snapshot.kt │ │ ├── correct selection set on partially failed result.kt │ │ ├── not nullable top level field has null snapshot.kt │ │ ├── not nullable top level field has null.kt │ │ ├── not nullable top level field is absent snapshot.kt │ │ └── not nullable top level field is absent.kt │ ├── scalars │ │ ├── custom json scalar as input type snapshot.kt │ │ ├── custom json scalar as input type.kt │ │ ├── custom json scalar as output type snapshot.kt │ │ ├── custom json scalar as output type.kt │ │ ├── date time scalar as input type snapshot.kt │ │ ├── date time scalar as input type.kt │ │ ├── date time scalar as output type snapshot.kt │ │ ├── date time scalar as output type.kt │ │ ├── date time scalar is passthrough and can be anything technically snapshot.kt │ │ ├── date time scalar is passthrough and can be anything technically.kt │ │ ├── hydrating json data snapshot.kt │ │ ├── hydrating json data.kt │ │ ├── hydrating using date time as arg snapshot.kt │ │ ├── hydrating using date time as arg.kt │ │ ├── hydrating using json data as arg snapshot.kt │ │ ├── hydrating using json data as arg.kt │ │ ├── hydrating using long as arg snapshot.kt │ │ ├── hydrating using long as arg.kt │ │ ├── hydrating using url as arg snapshot.kt │ │ ├── hydrating using url as arg.kt │ │ ├── indexed hydrating using json data as arg snapshot.kt │ │ ├── indexed hydrating using json data as arg.kt │ │ ├── long scalar argument with default values snapshot.kt │ │ ├── long scalar argument with default values.kt │ │ ├── long scalar as input type snapshot.kt │ │ ├── long scalar as input type.kt │ │ ├── long scalar as output type snapshot.kt │ │ ├── long scalar as output type.kt │ │ ├── long scalar is passthrough and can be anything technically snapshot.kt │ │ ├── long scalar is passthrough and can be anything technically.kt │ │ ├── renaming date time typed field snapshot.kt │ │ ├── renaming date time typed field.kt │ │ ├── renaming json typed field snapshot.kt │ │ ├── renaming json typed field.kt │ │ ├── renaming url typed field snapshot.kt │ │ ├── renaming url typed field.kt │ │ ├── url scalar as input type snapshot.kt │ │ ├── url scalar as input type.kt │ │ ├── url scalar as output type snapshot.kt │ │ ├── url scalar as output type.kt │ │ ├── url scalar is passthrough and can be anything technically snapshot.kt │ │ └── url scalar is passthrough and can be anything technically.kt │ ├── schema │ │ ├── can delete fields and types snapshot.kt │ │ └── can delete fields and types.kt │ └── skip-include-fields │ │ ├── handles include directive on single field whose parent returns null snapshot.kt │ │ ├── handles include directive on single field whose parent returns null.kt │ │ ├── handles include directive on single field whose parent returns object snapshot.kt │ │ ├── handles include directive on single field whose parent returns object.kt │ │ ├── handles include directive on single field with subselection snapshot.kt │ │ ├── handles include directive on single field with subselection.kt │ │ ├── handles include directive on single top level field snapshot.kt │ │ ├── handles include directive on single top level field with subselections snapshot.kt │ │ ├── handles include directive on single top level field with subselections.kt │ │ ├── handles include directive on single top level field.kt │ │ ├── handles skip directive on single field whose parent returns null snapshot.kt │ │ ├── handles skip directive on single field whose parent returns null.kt │ │ ├── handles skip directive on single field whose parent returns object snapshot.kt │ │ ├── handles skip directive on single field whose parent returns object.kt │ │ ├── handles skip directive on single field with subselection snapshot.kt │ │ ├── handles skip directive on single field with subselection.kt │ │ ├── handles skip directive on single top level field snapshot.kt │ │ ├── handles skip directive on single top level field with subselections snapshot.kt │ │ ├── handles skip directive on single top level field with subselections.kt │ │ ├── handles skip directive on single top level field.kt │ │ ├── handles skip directive on top level field snapshot.kt │ │ ├── handles skip directive on top level field.kt │ │ ├── handles skip include directive on field snapshot.kt │ │ ├── handles skip include directive on field with subselections snapshot.kt │ │ ├── handles skip include directive on field with subselections.kt │ │ ├── handles skip include directive on field.kt │ │ ├── hydration │ │ ├── handles include directive field with hydrated parent snapshot.kt │ │ ├── handles include directive field with hydrated parent.kt │ │ ├── handles include directive on batch hydrated field snapshot.kt │ │ ├── handles include directive on batch hydrated field.kt │ │ ├── handles include directive on field with batch hydrated parent snapshot.kt │ │ ├── handles include directive on field with batch hydrated parent.kt │ │ ├── handles include directive on hydrated field snapshot.kt │ │ └── handles include directive on hydrated field.kt │ │ ├── renamed │ │ ├── handles include directive on deep renamed field snapshot.kt │ │ ├── handles include directive on deep renamed field.kt │ │ ├── handles include directive on field with deep renamed parent snapshot.kt │ │ ├── handles include directive on field with deep renamed parent.kt │ │ ├── handles include directive on field with renamed parent snapshot.kt │ │ ├── handles include directive on field with renamed parent.kt │ │ ├── handles include directive on renamed field snapshot.kt │ │ └── handles include directive on renamed field.kt │ │ ├── skip include does not affect other transforms snapshot.kt │ │ └── skip include does not affect other transforms.kt │ ├── next │ ├── CombineExecutionResults.kt │ ├── GraphQLServiceExecution.kt │ ├── MigrateTests.kt │ ├── NadelIntegrationTest.kt │ ├── SimpleClassNameTypeResolver.kt │ ├── StripDefer.kt │ ├── TestExecutionCapture.kt │ ├── TestSnapshot.kt │ ├── UnderlyingSchemaGenerator.kt │ ├── UpdateTestSnapshots.kt │ ├── Util.kt │ └── fixtures │ │ ├── basic │ │ ├── BasicObjectSchemaTest.kt │ │ ├── BasicObjectSchemaTestSnapshot.kt │ │ ├── EchoTest.kt │ │ ├── EchoTestSnapshot.kt │ │ ├── HiddenFieldHintOff.kt │ │ ├── HiddenFieldHintOffSnapshot.kt │ │ ├── HiddenFieldHintOn.kt │ │ └── HiddenFieldHintOnSnapshot.kt │ │ ├── batchHydration │ │ ├── BatchHydrationAtQueryTypeTest.kt │ │ └── BatchHydrationAtQueryTypeTestSnapshot.kt │ │ ├── defer │ │ ├── ComprehensiveDeferQueryWithDifferentServiceCalls.kt │ │ ├── ComprehensiveDeferQueryWithDifferentServiceCallsSnapshot.kt │ │ ├── DeferOnListItems.kt │ │ ├── DeferOnListItemsTestSnapshot.kt │ │ ├── DeferThrowsErrorTest.kt │ │ ├── DeferThrowsErrorTestSnapshot.kt │ │ ├── DeferWithIfFalseTest.kt │ │ ├── DeferWithIfFalseTestSnapshot.kt │ │ ├── DeferWithLabelTest.kt │ │ ├── DeferWithLabelTestSnapshot.kt │ │ ├── DeferWithoutLabelTest.kt │ │ ├── DeferWithoutLabelTestSnapshot.kt │ │ ├── MultipleDeferDirectivesTest.kt │ │ ├── MultipleDeferDirectivesTestSnapshot.kt │ │ ├── MultipleDeferWithDifferentServiceCalls.kt │ │ ├── MultipleDeferWithDifferentServiceCallsSnapshot.kt │ │ ├── MultipleFieldsInMultipleDeferDirectivesTest.kt │ │ ├── MultipleFieldsInMultipleDeferDirectivesTestSnapshot.kt │ │ ├── MultipleFieldsinSingleDeferDirectiveTest.kt │ │ ├── MultipleFieldsinSingleDeferDirectiveTestSnapshot.kt │ │ ├── NestedDefersTest.kt │ │ ├── NestedDefersTestSnapshot.kt │ │ └── transforms │ │ │ ├── DeferredDeepRenameTest.kt │ │ │ ├── DeferredDeepRenameTestSnapshot.kt │ │ │ ├── DeferredFieldIsRenamedTest.kt │ │ │ ├── DeferredFieldIsRenamedTestSnapshot.kt │ │ │ ├── DeferredFieldIsSkippedIfTrueTest.kt │ │ │ ├── DeferredFieldIsSkippedIfTrueTestSnapshot.kt │ │ │ ├── DeferredListFieldIsRenamedTest.kt │ │ │ ├── DeferredListFieldIsRenamedTestSnapshot.kt │ │ │ ├── MultipleRenameTransformsInsideAndOutsideDefer.kt │ │ │ ├── MultipleRenameTransformsInsideAndOutsideDeferSnapshot.kt │ │ │ ├── MultipleRenamedFieldsAreDeferredTogether.kt │ │ │ ├── MultipleRenamedFieldsAreDeferredTogetherSnapshot.kt │ │ │ ├── MultipleSeparateDefersWithTransforms.kt │ │ │ ├── MultipleSeparateDefersWithTransformsSnapshot.kt │ │ │ ├── QueryContainingDeferButNonDeferredFieldIsRenamedTest.kt │ │ │ ├── QueryContainingDeferButNonDeferredFieldIsRenamedTestSnapshot.kt │ │ │ ├── RenameInnerFieldInsideDefer.kt │ │ │ ├── RenameInnerFieldInsideDeferSnapshot.kt │ │ │ ├── RenamedTypeIsDeferredTest.kt │ │ │ └── RenamedTypeIsDeferredTestSnapshot.kt │ │ ├── execution │ │ ├── AllUnionTypeConditionsUnionTestSnapshot.kt │ │ ├── BasicUnionExecutionTest.kt │ │ ├── HiddenUnionMembersInlineFragmentTestSnapshot.kt │ │ ├── HiddenUnionMembersNamedFragmentTestSnapshot.kt │ │ ├── HiddenUnionMembersTypenameTestSnapshot.kt │ │ ├── HiddenUnionMembersVisibleMemberTest.kt │ │ ├── HiddenUnionMembersVisibleMemberTestSnapshot.kt │ │ ├── PartialUnionTypeConditionsUnionTestSnapshot.kt │ │ ├── ServiceExecutionContextTest.kt │ │ ├── ServiceExecutionContextTestSnapshot.kt │ │ ├── TypenameInUnionSelectionTestSnapshot.kt │ │ ├── UnionAliasToSameResultKeyTestSnapshot.kt │ │ ├── UnionWithInterfacesExecutionTest.kt │ │ └── UnionWithInterfacesExecutionTestSnapshot.kt │ │ ├── hydration │ │ ├── CastHydrationLongInputToStringForMatchingTest.kt │ │ ├── CastHydrationLongInputToStringForMatchingTestSnapshot.kt │ │ ├── HydrationAtQueryTypeTest.kt │ │ ├── HydrationAtQueryTypeTestSnapshot.kt │ │ ├── HydrationIdentifiedByRenamedFieldTest.kt │ │ ├── HydrationIdentifiedByRenamedFieldTestSnapshot.kt │ │ ├── HydrationMultipleNestedSourceArgumentsTest.kt │ │ ├── HydrationMultipleNestedSourceArgumentsTestSnapshot.kt │ │ ├── HydrationNestedObjectInputTest.kt │ │ ├── HydrationNestedObjectInputTestSnapshot.kt │ │ ├── HydrationNonBatchedMultipleSourceArgumentsConditionalTest.kt │ │ ├── HydrationNonBatchedMultipleSourceArgumentsConditionalTestSnapshot.kt │ │ ├── HydrationNullSourceFieldValueTest.kt │ │ ├── HydrationNullSourceFieldValueTestSnapshot.kt │ │ ├── HydrationNullSourceFieldWithNotNullArgumentValueTest.kt │ │ ├── HydrationNullSourceFieldWithNotNullArgumentValueTestSnapshot.kt │ │ ├── HydrationRemainingArgumentsTest.kt │ │ ├── HydrationRemainingArgumentsTestSnapshot.kt │ │ ├── HydrationTest.kt │ │ ├── HydrationTestSnapshot.kt │ │ ├── HydrationThrowsErrorTest.kt │ │ ├── HydrationThrowsErrorTestSnapshot.kt │ │ ├── HydrationUnionDuplicateDefaultHydratedTest.kt │ │ ├── HydrationUnionDuplicateDefaultHydratedTestSnapshot.kt │ │ ├── PolymorphicHydrationCommonInterfaceMigrationTest.kt │ │ ├── PolymorphicHydrationCommonInterfaceMigrationTestSnapshot.kt │ │ ├── PolymorphicHydrationMigrationTest.kt │ │ ├── PolymorphicHydrationMigrationTestSnapshot.kt │ │ ├── defer │ │ │ ├── DeferGroupingTest.kt │ │ │ ├── DeferGroupingTestSnapshot.kt │ │ │ ├── HydrationDeferFlagOffTest.kt │ │ │ ├── HydrationDeferFlagOffTestSnapshot.kt │ │ │ ├── HydrationDeferForwardsErrors.kt │ │ │ ├── HydrationDeferForwardsErrorsFromEachHydrationTestSnapshot.kt │ │ │ ├── HydrationDeferForwardsErrorsTestSnapshot.kt │ │ │ ├── HydrationDeferGroupingTest.kt │ │ │ ├── HydrationDeferGroupingTestSnapshot.kt │ │ │ ├── HydrationDeferInList.kt │ │ │ ├── HydrationDeferInListNestedTestSnapshot.kt │ │ │ ├── HydrationDeferInListTestSnapshot.kt │ │ │ ├── HydrationDeferInListTopLevelTestSnapshot.kt │ │ │ ├── HydrationDeferInListTwoDimensionsTestSnapshot.kt │ │ │ ├── HydrationDeferInRenamedField.kt │ │ │ ├── HydrationDeferInRenamedFieldAndNestedHydrationsTestSnapshot.kt │ │ │ ├── HydrationDeferInRenamedFieldTestSnapshot.kt │ │ │ ├── HydrationDeferInRenamedFieldUsingRenamedFieldTestSnapshot.kt │ │ │ ├── HydrationDeferInlineFragmentGroupingTest.kt │ │ │ ├── HydrationDeferInlineFragmentGroupingTestSnapshot.kt │ │ │ ├── HydrationDeferIsDisabled.kt │ │ │ ├── HydrationDeferIsDisabledForNestedHydrationsTestSnapshot.kt │ │ │ ├── HydrationDeferLabelTest.kt │ │ │ ├── HydrationDeferLabelTestSnapshot.kt │ │ │ ├── HydrationDeferTest.kt │ │ │ ├── HydrationDeferTestSnapshot.kt │ │ │ ├── HydrationRenamedFieldInDeferTestSnapshot.kt │ │ │ ├── RenamedFieldInsideNestedHydrationsInsideDeferTestSnapshot.kt │ │ │ └── batch │ │ │ │ ├── BatchHydrationDeferTest.kt │ │ │ │ ├── BatchHydrationDeferTestSnapshot.kt │ │ │ │ ├── BatchHydrationDeferWithLabelTest.kt │ │ │ │ └── BatchHydrationDeferWithLabelTestSnapshot.kt │ │ ├── idHydration │ │ │ ├── IdHydrationTest.kt │ │ │ └── IdHydrationTestSnapshot.kt │ │ └── statics │ │ │ ├── StaticHydrationAndPolymorphicHydrationTest.kt │ │ │ ├── StaticHydrationAndPolymorphicHydrationTestSnapshot.kt │ │ │ ├── StaticHydrationNestedErrorTest.kt │ │ │ ├── StaticHydrationNestedErrorTestSnapshot.kt │ │ │ ├── StaticHydrationOverlappingHydrationTest.kt │ │ │ ├── StaticHydrationOverlappingHydrationTestSnapshot.kt │ │ │ ├── StaticHydrationScalarFieldTest.kt │ │ │ ├── StaticHydrationScalarFieldTestSnapshot.kt │ │ │ ├── StaticHydrationTest.kt │ │ │ ├── StaticHydrationTestSnapshot.kt │ │ │ ├── StaticHydrationVirtualTypeHintOffTest.kt │ │ │ └── StaticHydrationVirtualTypeHintOffTestSnapshot.kt │ │ ├── instrumentation │ │ ├── Instrumentation.kt │ │ ├── InstrumentationBeginExecuteOnCompleteOnFailureTestSnapshot.kt │ │ ├── InstrumentationBeginExecuteOnCompleteOnSuccessTestSnapshot.kt │ │ ├── InstrumentationBeginQueryExecutionOnCompleteOnFailureTestSnapshot.kt │ │ └── InstrumentationBeginQueryExecutionOnCompleteOnSuccessTestSnapshot.kt │ │ ├── introspection │ │ ├── NamespaceLikeShortCircuitsIntrospectionTest.kt │ │ ├── NamespaceLikeShortCircuitsIntrospectionTestSnapshot.kt │ │ ├── NamespaceMutationLikeShortCircuitsIntrospectionTest.kt │ │ └── NamespaceMutationLikeShortCircuitsIntrospectionTestSnapshot.kt │ │ ├── partition │ │ ├── ErrorOnPartitionCallsTest.kt │ │ ├── ErrorOnPartitionCallsTestSnapshot.kt │ │ ├── ErrorOnPrimaryCallTest.kt │ │ ├── ErrorOnPrimaryCallTestSnapshot.kt │ │ ├── HydrationFollowedByPartitionTest.kt │ │ ├── HydrationFollowedByPartitionTestSnapshot.kt │ │ ├── MutationPartitionTest.kt │ │ ├── MutationPartitionTestSnapshot.kt │ │ ├── MutationPartitionWithDataFetcherErrorInPartitionCallTest.kt │ │ ├── MutationPartitionWithDataFetcherErrorInPartitionCallTestSnapshot.kt │ │ ├── MutationPartitionWithDataFetcherErrorInPrimaryCallTest.kt │ │ ├── MutationPartitionWithDataFetcherErrorInPrimaryCallTestSnapshot.kt │ │ ├── MutationPartitionWithErrorsOnlyTest.kt │ │ ├── MutationPartitionWithErrorsOnlyTestSnapshot.kt │ │ ├── MutationPartitionWithMutationErrorInPartitionCallTest.kt │ │ ├── MutationPartitionWithMutationErrorInPartitionCallTestSnapshot.kt │ │ ├── MutationPartitionWithMutationErrorInPrimaryCallTest.kt │ │ ├── MutationPartitionWithMutationErrorInPrimaryCallTestSnapshot.kt │ │ ├── NamespacedPartitionTest.kt │ │ ├── NamespacedPartitionTestSnapshot.kt │ │ ├── NestedPartitionTest.kt │ │ ├── NestedPartitionTestSnapshot.kt │ │ ├── NoPartitionTest.kt │ │ ├── NoPartitionTestSnapshot.kt │ │ ├── PartialPartitionTest.kt │ │ ├── PartialPartitionTestSnapshot.kt │ │ ├── PartitionFollowedByHydrationTest.kt │ │ ├── PartitionFollowedByHydrationTestSnapshot.kt │ │ ├── PartitionFollowedByRenamedTest.kt │ │ ├── PartitionFollowedByRenamedTestSnapshot.kt │ │ ├── PartitionOnRenamedFieldTest.kt │ │ ├── PartitionOnRenamedFieldTestSnapshot.kt │ │ ├── PartitionTypeWithMultipleRoutingFieldsTest.kt │ │ ├── PartitionTypeWithMultipleRoutingFieldsTestSnapshot.kt │ │ ├── PartitionWithConflictingRoutingValuesTest.kt │ │ ├── PartitionWithConflictingRoutingValuesTestSnapshot.kt │ │ ├── PartitionWithConflictingRoutingValuesThatAreFilteredTest.kt │ │ ├── PartitionWithConflictingRoutingValuesThatAreFilteredTestSnapshot.kt │ │ ├── PartitionWithFieldAliasTest.kt │ │ ├── PartitionWithFieldAliasTestSnapshot.kt │ │ ├── PartitionWithNamespaceFieldAliasTest.kt │ │ ├── PartitionWithNamespaceFieldAliasTestSnapshot.kt │ │ ├── PartitionWithSkipIncludeTest.kt │ │ ├── PartitionWithSkipIncludeTestSnapshot.kt │ │ ├── PartitionWithTypeNameTest.kt │ │ ├── PartitionWithTypeNameTestSnapshot.kt │ │ ├── PartitionWithVariablesTest.kt │ │ ├── PartitionWithVariablesTestSnapshot.kt │ │ ├── SimplePartitionTest.kt │ │ ├── SimplePartitionTestSnapshot.kt │ │ └── hooks │ │ │ ├── RoutingBasedPartitionTransformHook.kt │ │ │ └── ThingsDataFetcherFactory.kt │ │ ├── rename │ │ ├── RenamedInputTypeTest.kt │ │ ├── RenamedInputTypeTestSnapshot.kt │ │ ├── RenamedSharedInputTypeTest.kt │ │ └── RenamedSharedInputTypeTestSnapshot.kt │ │ ├── schema │ │ ├── CustomHydrationDirectiveTest.kt │ │ └── CustomHydrationDirectiveTestSnapshot.kt │ │ └── stub │ │ ├── StubAliasTest.kt │ │ ├── StubAliasTestSnapshot.kt │ │ ├── StubEnumArgumentTest.kt │ │ ├── StubEnumArgumentTestSnapshot.kt │ │ ├── StubEnumInputFieldTest.kt │ │ ├── StubEnumInputFieldTestSnapshot.kt │ │ ├── StubEnumTypeTest.kt │ │ ├── StubEnumTypeTestSnapshot.kt │ │ ├── StubExampleTest.kt │ │ ├── StubExampleTestSnapshot.kt │ │ ├── StubExtensionTest.kt │ │ ├── StubExtensionTestSnapshot.kt │ │ ├── StubFieldInMutationOperationTest.kt │ │ ├── StubFieldInMutationOperationTestSnapshot.kt │ │ ├── StubFieldInMutationPayloadTest.kt │ │ ├── StubFieldInMutationPayloadTestSnapshot.kt │ │ ├── StubFieldOnInterfaceOutputTest.kt │ │ ├── StubFieldOnInterfaceOutputTest_IdOnlySnapshot.kt │ │ ├── StubFieldOnInterfaceOutputTest_Id_KeyTaskSnapshot.kt │ │ ├── StubFieldOnInterfaceOutputTest_KeyOnIssueAndTaskSnapshot.kt │ │ ├── StubFieldOnInterfaceOutputTest_KeyOnIssueSnapshot.kt │ │ ├── StubFieldOnInterfaceOutputTest_KeyOnTaskSnapshot.kt │ │ ├── StubFieldOnOneInterfaceOutputTest.kt │ │ ├── StubFieldOnOneInterfaceOutputTestSnapshot.kt │ │ ├── StubInterfaceFieldImplTest.kt │ │ ├── StubInterfaceFieldImplTestSnapshot.kt │ │ ├── StubInterfaceFieldTest.kt │ │ ├── StubInterfaceFieldTestSnapshot.kt │ │ ├── StubListTest.kt │ │ ├── StubListTestSnapshot.kt │ │ ├── StubNamespaceLikeMutationFieldTest.kt │ │ ├── StubNamespaceLikeMutationFieldTestSnapshot.kt │ │ ├── StubNamespaceMutationFieldTest.kt │ │ ├── StubNamespaceMutationFieldTestSnapshot.kt │ │ ├── StubNestedTest.kt │ │ ├── StubNestedTestSnapshot.kt │ │ ├── StubOnErrorTest.kt │ │ ├── StubOnErrorTestSnapshot.kt │ │ ├── StubRootLevelTest.kt │ │ ├── StubRootLevelTestSnapshot.kt │ │ ├── StubRootMutationFieldTest.kt │ │ ├── StubRootMutationFieldTestSnapshot.kt │ │ ├── StubTest.kt │ │ ├── StubTestSnapshot.kt │ │ ├── StubTypeTest.kt │ │ ├── StubTypeTestSnapshot.kt │ │ ├── StubUnionTypeTest.kt │ │ └── StubUnionTypeTestSnapshot.kt │ ├── transforms │ └── RemoveFieldTestTransform.kt │ └── util │ ├── FileUtil.kt │ ├── NadelTransformAdapter.kt │ ├── NadelUtil.kt │ ├── ReflectionUtil.kt │ ├── StriktUtil.kt │ └── StringUtil.kt └── resources └── fixtures ├── basic ├── call-with-variables-inside-input-objects.yml ├── can-execute-document-with-multiple-operation-definitions.yml ├── can-execute-single-named-operation-when-operation-name-is-empty.yml ├── can-execute-single-named-operation-when-operation-name-is-null.yml ├── can-generate-legacy-operation-names-forwarding-original-name.yml ├── can-generate-legacy-operation-names.yml ├── large-query-but-not-deep.yml ├── missing-null-variables-are-handled.yml ├── mutation-can-be-executed.yml ├── one-call-to-one-service-with-list-result.yml ├── one-call-to-one-service.yml ├── operation-depth-limit.yml ├── operation-field-count-limit.yml ├── query-to-one-service-with-execution-input-passed-down.yml ├── rejects-multiple-operation-defs-without-explicit-op-name.yml ├── schema-transformation-is-applied.yml ├── service-types-are-completely-filtered.yml ├── service-types-are-filtered.yml └── subscription-can-be-executed.yml ├── chained transforms ├── ari use case │ ├── ari-argument-in-renamed-input.yml │ ├── ari-argument-in-renamed-object-input-in-hydration.yml │ ├── ari-argument-transform-on-renamed-field.yml │ └── ari-argument-transform.yml └── two-transforms-on-a-field.yml ├── deep renames ├── deep-rename-inside-another-rename-of-type-list.yml ├── deep-rename-inside-batch-hydration-null-object.yml ├── deep-rename-inside-batch-hydration.yml ├── deep-rename-inside-deep-rename.yml ├── deep-rename-inside-hydration.yml ├── deep-rename-inside-hydrations.yml ├── deep-rename-inside-list.yml ├── deep-rename-inside-rename.yml ├── deep-rename-inside-renamed-type.yml ├── deep-rename-nested-inside-renamed-type.yml ├── deep-rename-not-asked-for-with-unions.yml ├── deep-rename-of-an-object-with-transformations-inside-object.yml ├── deep-rename-of-an-object.yml ├── deep-rename-of-list-of-list.yml ├── deep-rename-of-list.yml ├── deep-rename-returns-null-2.yml ├── deep-rename-returns-null.yml ├── deep-rename-with-argument-works.yml ├── deep-rename-with-interfaces-asking-typename.yml ├── deep-rename-with-interfaces.yml ├── deep-rename-with-more-interfaces.yml ├── deep-rename-with-more-unions.yml ├── deep-rename-with-unions.yml ├── deep-rename-works.yml ├── two-deep-renames-merged-fields-with-same-path-and-field-rename.yml └── two-deep-renames.yml ├── document variable handling ├── inlined-all-arguments-with-mixed-literals-and-variables.yml ├── inlined-all-arguments-with-renamed-field-input-is-wrapped-in-a-list.yml ├── inlined-all-arguments-with-renamed-field.yml ├── inlined-all-arguments.yml ├── inlined-json-arguments.yml ├── input-object-with-json-field.yml ├── primitive-json-arguments-variables.yml └── primitive-json-arguments.yml ├── dynamic service resolution ├── dynamic-service-resolution-directive-not-in-interface.yml ├── dynamic-service-resolution-handles-complex-fragments.yml ├── dynamic-service-resolution-handles-inline-fragments-from-multiple-services.yml ├── dynamic-service-resolution-multiple-services-with-one-unmapped-node-lookup.yml ├── dynamic-service-resolution-multiple-services.yml ├── dynamic-service-resolution-simple-success-case.yml ├── dynamic-service-resolution-with-no-fragments.yml └── typename-is-passed-on-queries-using-dynamic-resolved-services.yml ├── errors ├── errors-and-no-data-from-a-service-execution-are-reflected-in-the-result.yml ├── errors-and-some-data-from-a-service-execution-are-reflected-in-the-result.yml ├── exceptions-in-hydration-call-that-fail-with-errors-are-reflected-in-the-result.yml ├── exceptions-in-service-execution-call-result-in-graphql-errors-and-call-onerror-instrumentation.yml └── exceptions-in-service-execution-result-completable-future-in-graphql-errors.yml ├── execution id ├── execution-id-is-transferred-from-input.yml └── execution-id-is-transferred-from-provider-if-missing-in-input.yml ├── extend type ├── extending-types-from-another-service-is-possible-with-synthetic-fields.yml ├── extending-types-from-another-service-is-possible.yml ├── extending-types-via-hydration-returning-a-connection.yml ├── extending-types-via-hydration-with-arguments-passed-on.yml └── extending-types-via-hydration-with-variables-arguments.yml ├── field removed ├── all-fields-are-removed-from-hydrated-field.yml ├── all-fields-in-a-selection-set-are-removed.yml ├── all-non-hydrated-fields-in-query-are-removed.yml ├── field-in-a-selection-set-is-removed.yml ├── field-in-non-hydrated-query-is-removed.yml ├── field-is-removed-from-hydrated-field.yml ├── field-is-removed-from-nested-hydrated-field.yml ├── field-with-selections-is-removed.yml ├── hidden-namespaced-hydration-top-level-field-is-removed.yml ├── hydrated-field-is-removed.yml ├── hydration-top-level-field-is-removed.yml ├── inserts-one-error-for-a-forbidden-field-in-a-list.yml ├── namespaced-field-is-removed-with-renames.yml ├── namespaced-field-is-removed.yml ├── namespaced-hydration-top-level-field-is-removed.yml ├── nested-hydrated-field-is-removed.yml ├── one-of-top-level-fields-is-removed.yml ├── renamed-top-level-field-is-not-removed-short-circuit-hint-is-on.yml ├── restricted-field-inside-hydration-via-fragments-used-twice.yml ├── restricted-field-via-fragments-used-twice.yml ├── restricted-single-field-inside-hydration-via-fragments-used-twice.yml ├── restricted-single-field-via-fragments-used-twice.yml ├── the-only-field-in-a-selection-set-is-removed.yml ├── top-level-field-in-batched-query-is-removed.yml ├── top-level-field-is-removed-for-a-subscription-with-namespaced-field.yml ├── top-level-field-is-removed-for-a-subscription.yml ├── top-level-field-is-removed-hint-is-off.yml └── top-level-field-is-removed.yml ├── graphqlcontext └── graphqlcontext-is-present-on-input.yml ├── hidden ├── can-query-non-hidden-fields.yml ├── cannot-query-hidden-fields.yml ├── cannot-query-hidden-top-level-fields.yml └── introspection-does-not-show-hidden-fields.yml ├── instrumentation ├── abort-begin-execute-in-cf-within-instrumentation-still-calls-enhancing-instrumentation.yml ├── abort-begin-execute-within-instrumentation-still-calls-enhancing-instrumentation.yml ├── abort-begin-query-execution-within-instrumentation-still-calls-enhancing-instrumentation.yml ├── abort-begin-validation-within-instrumentation-still-calls-enhancing-instrumentation.yml ├── chained-instrumentation-works-as-expected.yml ├── execution-is-aborted-when-begin-execute-completes-exceptionally-inside-cf.yml ├── execution-is-aborted-when-begin-execute-completes-exceptionally-using-chained-instrumentation.yml ├── execution-is-aborted-when-begin-execute-completes-exceptionally.yml └── instrumentation-is-called.yml ├── introspection ├── can-ask-for-query-typename.yml ├── can-specify-max-introspection-response-size.yml ├── if-there-are-a-mix-of-system-fields-and-normal-fields-it-works.yml ├── introspection-can-be-performed-even-with-fragments.yml ├── introspection-with-variables-ff-on.yml └── no-introspections-on-subscriptions.yml ├── java-compat └── java-ari-transform.yml ├── monitor └── monitor-emits-timings.yml ├── namespaced ├── aliased-typename-is-wiped-when-other-data-fails.yml ├── both-of-the-namespaced-services-returns-error.yml ├── multiple-typename-is-kept-when-nothing-else-is-asked-for.yml ├── multiple-typenames-are-wiped-when-other-data-fails.yml ├── mutation-with-two-services-sharing-a-namespaced-field.yml ├── namespaced-result-map-has-correct-entries-on-partial-failure.yml ├── not-nullable-namespaced-child-has-null.yml ├── not-nullable-namespaced-child-is-absent-2.yml ├── not-nullable-namespaced-child-is-absent.yml ├── one-of-the-namespaced-services-returns-error-reversed.yml ├── one-of-the-namespaced-services-returns-error.yml ├── query-with-2-namespaced-fields-that-have-matching-subfields.yml ├── query-with-two-services-sharing-a-namespaced-field-and-a-non-namespaced-top-level-field.yml ├── query-with-two-services-sharing-a-namespaced-field-fragment-query.yml ├── query-with-two-services-sharing-a-namespaced-field.yml ├── typename-is-kept-when-data-is-partially-returned.yml ├── typename-is-kept-when-nothing-else-is-asked-for.yml ├── typename-is-passed-on-namespaced-fields.yml ├── typename-is-resolved-even-when-namespaced-type-is-extended-in-declaring-service.yml ├── typename-is-resolved-even-when-no-fields-are-queried-from-declaring-service.yml ├── typename-is-resolved-even-when-there-are-multiple-services-declaring-namespaced-type.yml ├── typename-is-resolved-on-namespaced-fields.yml ├── typename-is-resolved-when-namespaced-field-and-type-are-defined-in-different-services.yml ├── typename-is-sent-only-to-service-that-owns-namespace-type.yml ├── typename-is-sent-owning-service-even-when-namespaced-field-and-type-are-defined-in-different-services.yml ├── typename-is-sent-owning-service-even-when-type-is-extended-in-it.yml ├── typename-is-sent-to-owning-service-even-when-no-fields-are-queried.yml ├── typename-is-wiped-when-other-data-fails-includes-not-nullable-field.yml └── typename-is-wiped-when-other-data-fails.yml ├── new hydration ├── able-to-ask-for-field-and-use-same-field-as-hydration-source.yml ├── abstract types │ ├── no-object-fields-in-the-result-are-backed-a-batch-hydration.yml │ ├── no-object-fields-in-the-result-are-backed-a-hydration.yml │ ├── some-object-fields-in-the-result-are-backed-a-batch-hydration.yml │ ├── some-object-fields-in-the-result-are-backed-a-hydration.yml │ ├── some-renamed-object-types-have-fields-in-the-result-are-backed-a-batch-hydration.yml │ └── some-renamed-object-types-have-fields-in-the-result-are-backed-a-hydration.yml ├── all-hydration-fields-are-seen-by-transformer.yml ├── basic-conditional-hydration-with-false-equals-condition.yml ├── basic-conditional-hydration-with-false-matches-condition.yml ├── basic-conditional-hydration-with-false-starts-with-condition.yml ├── basic-conditional-hydration-with-true-equals-condition.yml ├── basic-conditional-hydration-with-true-matches-condition.yml ├── basic-conditional-hydration-with-true-starts-with-condition.yml ├── basic-hydration-directive-based.yml ├── basic-hydration-with-actor-field-rename.yml ├── basic-hydration-with-default-array-argument-values.yml ├── basic-hydration-with-default-boolean-argument-values.yml ├── basic-hydration-with-default-int-argument-values.yml ├── basic-hydration-with-default-null-argument-values.yml ├── basic-hydration-with-default-object-argument-values.yml ├── basic-hydration-with-default-string-argument-values.yml ├── basic-hydration-with-static-arg-array.yml ├── basic-hydration-with-static-arg-boolean.yml ├── basic-hydration-with-static-arg-float.yml ├── basic-hydration-with-static-arg-integer.yml ├── basic-hydration-with-static-arg-object-array.yml ├── basic-hydration-with-static-arg-object.yml ├── basic-hydration-with-static-args.yml ├── basic-hydration.yml ├── batch-hydration-input-is-absent.yml ├── batch-hydration-input-is-null.yml ├── batch-hydration-instruction-hook-returns-null.yml ├── batch-hydration-null-source-object.yml ├── batch-hydration-with-renamed-actor-field.yml ├── batched-hydration-query-with-a-synthetic-field.yml ├── batched-hydration-with-default-array-argument-values.yml ├── batched-hydration-with-default-boolean-argument-values.yml ├── batched-hydration-with-default-int-argument-values.yml ├── batched-hydration-with-default-null-argument-values.yml ├── batched-hydration-with-default-object-argument-values.yml ├── batched-hydration-with-default-string-argument-values.yml ├── batching-of-hydration-list-with-flattened-arguments.yml ├── batching-of-hydration-list-with-partition-2.yml ├── batching-of-hydration-list-with-partition.yml ├── batching-of-hydration-list.yml ├── batching │ ├── batching-absent-source-input.yml │ ├── batching-conditional-hydration-accepts-true-condition-after-a-false-condition.yml │ ├── batching-conditional-hydration-in-abstract-type.yml │ ├── batching-conditional-hydration-with-false-conditions.yml │ ├── batching-conditional-hydration-with-list-condition-field.yml │ ├── batching-conditional-hydration-with-multiple-true-conditions-takes-first.yml │ ├── batching-conditional-hydration-works-when-equals-condition-field-is-null.yml │ ├── batching-conditional-hydration-works-when-matches-condition-field-is-null.yml │ ├── batching-conditional-hydration-works-when-starts-with-condition-field-is-null.yml │ ├── batching-conditional-hydration-works-with-int-type.yml │ ├── batching-conditional-hydration-works-with-matches-condition.yml │ ├── batching-conditional-hydration-works-with-starts-with-condition.yml │ ├── batching-multiple-source-ids-going-to-different-services.yml │ ├── batching-no-source-inputs.yml │ ├── batching-null-source-input-object.yml │ └── batching-single-source-id.yml ├── can-generate-legacy-operation-name-on-batch-hydration-for-specific-service.yml ├── can-generate-legacy-operation-name-on-batch-hydration.yml ├── can-generate-legacy-operation-name-on-hydration.yml ├── complex identified by │ ├── complex-identified-by-doesnt-use-all-input-fields-in-the-input-identified-by-argument.yml │ ├── complex-identified-by-hydration-batching-returns-null-batch.yml │ ├── complex-identified-by-input-is-absent.yml │ ├── complex-identified-by-input-is-null.yml │ ├── complex-identified-by-uses-same-source-for-2-hydrations-and-a-deep-rename.yml │ ├── complex-identified-by-uses-same-source-for-2-hydrations.yml │ ├── complex-identified-by-with-indexed-hydration.yml │ ├── complex-identified-by-with-list-source-id.yml │ ├── complex-identified-by-with-rename.yml │ ├── complex-identified-by-with-some-null-source-ids.yml │ ├── complex-identified-by.yml │ └── complex-input-object-with-indexed-hydration.yml ├── conditional-hydration-equals-predicate-works-with-integer-type.yml ├── conditional-hydration-matches-predicate-works-with-id-type.yml ├── conditional-hydration-starts-with-predicate-works-with-id-type.yml ├── expecting-one-child-error-on-extensive-field-argument-passed-to-hydration.yml ├── expecting-one-child-error-on-extensive-field-argument-passed-to-synthetic-hydration.yml ├── hydration-batching-returns-null.yml ├── hydration-call-forwards-error.yml ├── hydration-call-over-itself-with-renamed-types.yml ├── hydration-call-with-argument-value-from-original-field-argument.yml ├── hydration-call-with-fragments-in-the-hydrated-part-and-synthetic-field.yml ├── hydration-call-with-fragments-in-the-hydrated-part.yml ├── hydration-call-with-two-argument-values-from-original-field-arguments.yml ├── hydration-from-field-in-interface-with-type-rename.yml ├── hydration-from-field-in-interface.yml ├── hydration-input-is-absent.yml ├── hydration-input-is-empty-list.yml ├── hydration-input-is-null.yml ├── hydration-inside-a-renamed-field.yml ├── hydration-list-input.yml ├── hydration-list-with-batching-forwards-error.yml ├── hydration-list-with-batching.yml ├── hydration-list-with-one-element.yml ├── hydration-with-interfaces-asking-typename.yml ├── hydration-with-interfaces-no-source-id.yml ├── hydration-with-interfaces.yml ├── hydration-with-more-interfaces.yml ├── hydration-with-multiple-conditions-ignores-false-conditions.yml ├── hydration-with-multiple-true-conditions-takes-first.yml ├── hydration-within-hydration-with-variables.yml ├── hydration-works-when-an-ancestor-field-has-been-renamed.yml ├── hydration-works-when-equals-condition-field-is-null.yml ├── hydration-works-when-matches-condition-field-is-null.yml ├── hydration-works-when-startswith-condition-field-is-null.yml ├── index-hydration-all-null-ids.yml ├── index-hydration-with-partitioned-inputs.yml ├── index │ ├── hydration-matching-using-index-one-batch-returns-errors.yml │ ├── hydration-matching-using-index-result-size-invariant-mismatch.yml │ ├── hydration-matching-using-index-returning-errors.yml │ ├── hydration-matching-using-index-returning-null-elements.yml │ ├── hydration-matching-using-index-returning-null.yml │ ├── hydration-matching-using-index-with-lists-with-hydration-field-not-exposed.yml │ ├── hydration-matching-using-index-with-lists.yml │ ├── hydration-matching-using-index-with-null-input-nodes.yml │ └── hydration-matching-using-index.yml ├── multiple-conditional-hydrations-with-different-source-fields.yml ├── nested-list-hydration-under-a-renamed-top-level-field.yml ├── new-batched-with-null-value-in-source-array.yml ├── nullable-argument-for-hydration-is-missing.yml ├── one-hydration-call-with-fragments-defined.yml ├── one-hydration-call-with-input-value-having-longer-path.yml ├── one-hydration-call-with-longer-path-and-same-named-overall-field.yml ├── one-hydration-call-with-longer-path-arguments-and-merged-fields.yml ├── one-hydration-call-with-variables-defined.yml ├── one-synthetic-hydration-call-with-longer-path-and-same-named-overall-field.yml ├── one-synthetic-hydration-call-with-longer-path-arguments-and-merged-fields-and-renamed-type.yml ├── polymorphic hydrations │ ├── batch-polymorphic-hydration-actor-fields-are-in-the-same-service-return-types-implement-same-interface.yml │ ├── batch-polymorphic-hydration-actor-fields-are-in-the-same-service.yml │ ├── batch-polymorphic-hydration-return-null-in-array-with-error.yml │ ├── batch-polymorphic-hydration-return-null-in-array.yml │ ├── batch-polymorphic-hydration-return-top-level-null-and-error.yml │ ├── batch-polymorphic-hydration-return-top-level-null.yml │ ├── batch-polymorphic-hydration-when-hook-returns-null-1.yml │ ├── batch-polymorphic-hydration-when-hook-returns-null.yml │ ├── batch-polymorphic-hydration-where-only-one-type-is-queried.yml │ ├── batch-polymorphic-hydration-with-conditions.yml │ ├── batch-polymorphic-hydration-with-interfaces.yml │ ├── batch-polymorphic-hydration-with-lots-of-renames.yml │ ├── batch-polymorphic-hydration-with-rename.yml │ ├── batch-polymorphic-hydration-with-unions.yml │ ├── batch-polymorphic-hydration.yml │ ├── batch-polymorphic-hydrations-are-executed-in-parallel.yml │ ├── polymorphic-hydration-instructions-use-different-inputs.yml │ ├── solitary-polymorphic-hydration-when-hook-returns-null.yml │ └── solitary-polymorphic-hydration.yml ├── query-with-hydrated-interfaces-work-as-expected.yml ├── query-with-hydration-that-fail-with-errors-are-reflected-in-the-result.yml ├── query-with-synthetic-hydration-that-fail-with-errors-are-reflected-in-the-result.yml ├── query-with-three-nested-hydrations-and-simple-data-and-lots-of-renames.yml ├── query-with-three-nested-hydrations-and-simple-data.yml ├── query-with-three-nested-hydrations-and-synthetic-fields.yml ├── query-with-three-nested-hydrations.yml ├── renamed-and-hydrated-query-using-same-underlying-source.yml ├── repeated-hydrated-fields-on-the-same-level-overlapping-fields-in-the-query.yml ├── repeated-hydrated-fields-on-the-same-level-when-using-batch-hydration.yml ├── repeated-hydrated-fields-on-the-same-level.yml ├── same-source-for-2-hydrations.yml ├── same-source-for-2-nested-hydrations-and-a-rename.yml ├── simple-hydration-query-with-a-synthetic-field.yml ├── simple-synthetic-hydration-with-one-service-and-type-renaming.yml ├── synthetic-hydration-batching-returns-null.yml ├── synthetic-hydration-call-over-itself-within-renamed-types.yml ├── synthetic-hydration-call-with-two-argument-values-from-original-field-arguments.yml ├── synthetic-hydration-forwards-error.yml ├── synthetic-hydration-input-is-empty-list.yml ├── synthetic-hydration-input-is-null.yml ├── synthetic-hydration-list-with-batching-forwards-error.yml ├── synthetic-hydration-with-renamed-type.yml ├── synthetic-hydration-works-when-an-ancestor-field-has-been-renamed.yml ├── top-level-field-data-returns-null-in-batched-synthetic-hydration.yml ├── top-level-field-data-returns-null-in-synthetic-hydration.yml ├── top-level-field-is-null-in-batched-synthetic-hydration.yml ├── top-level-field-is-null-in-synthetic-hydration.yml └── transformer-on-hydration-fields.yml ├── oneOf ├── one-of-fails-when-2-values-are-passed.yml ├── one-of-fails-when-invalid-variables-are-passed.yml ├── one-of-fails-when-nested-input.yml ├── one-of-fails-when-no-values-are-passed.yml ├── one-of-fails-when-null-value-is-passed.yml └── one-of-successful.yml ├── polymorphism ├── fragment-referenced-twice-from-inside-query-and-inside-another-fragment.yml ├── lower-level-interface-fields-get-typename-added.yml ├── lower-level-interface-fields-which-are-renamed-get-typename-added.yml ├── query-with-pass-through-interfaces-and-unions-that-dont-have-typename-in-them-work-as-expected.yml ├── query-with-pass-through-interfaces-and-unions-that-have-aliased-typename-in-fragments-work-as-expected.yml ├── query-with-pass-through-interfaces-and-unions-that-have-mixed-typename-in-them-work-as-expected.yml ├── query-with-pass-through-interfaces-and-unions-that-have-typename-in-fragments-work-as-expected.yml ├── query-with-pass-through-interfaces-and-unions-that-have-typename-in-them-work-as-expected.yml ├── two-top-level-fields-with-a-fragment.yml └── typename-is-correctly-passed-on-and-artificial-typename-is-removed.yml ├── renames ├── a-lot-of-renames.yml ├── chain-rename-transform-with-type-rename.yml ├── chain-rename-transform.yml ├── correct-typename-is-returned.yml ├── fragment-type-rename-and-field-rename-works-as-expected.yml ├── inline-fragment-type-rename-and-field-rename-works-as-expected.yml ├── interface-rename-direct-works-as-expected.yml ├── interface-rename-with-fragments-works-as-expected.yml ├── let-jsw-do-jsw-things.yml ├── nested-renamed-types.yml ├── query-to-two-services-with-field-rename.yml ├── rename-inside-hydration.yml ├── rename-inside-multiple-hydrations.yml ├── rename-inside-renamed-type.yml ├── rename-nested-inside-renamed-type.yml ├── rename-on-shared-abstract-type.yml ├── rename-with-first-last-path-element-returning-null.yml ├── rename-with-first-path-element-returning-null.yml ├── rename-with-interfaces-asking-typename.yml ├── rename-with-interfaces.yml ├── rename-with-more-interfaces.yml ├── renamed-field-with-normal-field-using-same-source.yml ├── renamed-list-inside-renamed-list.yml ├── renamed-top-level-field-with-argument.yml ├── simple-type-rename-and-field-rename-works-as-expected.yml ├── string-field-rename.yml ├── types │ ├── renamed-interface-type-is-shared.yml │ ├── renamed-type-in-interface.yml │ ├── renamed-type-in-union-declared-in-another-service.yml │ ├── renamed-type-in-union-declared-in-same-service.yml │ ├── renamed-type-in-union.yml │ ├── renamed-type-inside-batch-hydration.yml │ ├── renamed-type-inside-deep-rename-that-returns-null.yml │ ├── renamed-type-inside-deep-rename.yml │ ├── renamed-type-inside-hydration-that-returns-null.yml │ ├── renamed-type-inside-hydration.yml │ ├── renamed-type-inside-list.yml │ ├── renamed-type-inside-renamed-field.yml │ ├── renamed-type-is-shared-even-deeper.yml │ ├── renamed-type-shared-page-info.yml │ └── repeated-fragments-with-renamed-types.yml ├── union-rename-direct-works-as-expected.yml └── variable-referenced-input-types-rename-works-as-expected.yml ├── result merging ├── calls-to-multiple-services-are-merged.yml ├── correct-selection-set-on-failed-result.yml ├── correct-selection-set-on-partially-failed-result.yml ├── not-nullable-top-level-field-has-null-2.yml ├── not-nullable-top-level-field-has-null.yml ├── not-nullable-top-level-field-is-absent-2.yml └── not-nullable-top-level-field-is-absent.yml ├── scalars ├── custom-json-scalar-as-input-type.yml ├── custom-json-scalar-as-output-type.yml ├── date-time-scalar-as-input-type.yml ├── date-time-scalar-as-output-type.yml ├── date-time-scalar-is-passthrough-and-can-be-anything-technically.yml ├── hydrating-json-data.yml ├── hydrating-using-date-time-as-arg.yml ├── hydrating-using-json-data-as-arg.yml ├── hydrating-using-long-as-arg.yml ├── hydrating-using-url-as-arg.yml ├── indexed-hydrating-using-json-data-as-arg.yml ├── long-scalar-argument-with-default-values.yml ├── long-scalar-as-input-type.yml ├── long-scalar-as-output-type.yml ├── long-scalar-is-passthrough-and-can-be-anything-technically.yml ├── renaming-date-time-typed-field.yml ├── renaming-json-typed-field.yml ├── renaming-url-typed-field.yml ├── url-scalar-as-input-type.yml ├── url-scalar-as-output-type.yml └── url-scalar-is-passthrough-and-can-be-anything-technically.yml ├── schema └── can-delete-fields-and-types.yml └── skip-include-fields ├── handles-include-directive-on-single-field-whose-parent-returns-null.yml ├── handles-include-directive-on-single-field-whose-parent-returns-object.yml ├── handles-include-directive-on-single-field-with-subselection.yml ├── handles-include-directive-on-single-top-level-field-with-subselections.yml ├── handles-include-directive-on-single-top-level-field.yml ├── handles-skip-directive-on-single-field-whose-parent-returns-null.yml ├── handles-skip-directive-on-single-field-whose-parent-returns-object.yml ├── handles-skip-directive-on-single-field-with-subselection.yml ├── handles-skip-directive-on-single-top-level-field-with-subselections.yml ├── handles-skip-directive-on-single-top-level-field.yml ├── handles-skip-directive-on-top-level-field.yml ├── handles-skip-include-directive-on-field-with-subselections.yml ├── handles-skip-include-directive-on-field.yml ├── hydration ├── handles-include-directive-field-with-hydrated-parent.yml ├── handles-include-directive-on-batch-hydrated-field.yml ├── handles-include-directive-on-field-with-batch-hydrated-parent.yml └── handles-include-directive-on-hydrated-field.yml ├── renamed ├── handles-include-directive-on-deep-renamed-field.yml ├── handles-include-directive-on-field-with-deep-renamed-parent.yml ├── handles-include-directive-on-field-with-renamed-parent.yml └── handles-include-directive-on-renamed-field.yml └── skip-include-does-not-affect-other-transforms.yml /.atlassian/OWNER: -------------------------------------------------------------------------------- 1 | amarek 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/.github/ISSUE_TEMPLATE/other-issue.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/.github/workflows/master.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/fileTemplates/Nadel Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/.idea/fileTemplates/Nadel Test.kt -------------------------------------------------------------------------------- /.run/Update Test Snapshots.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/.run/Update Test Snapshots.run.xml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/README.MD -------------------------------------------------------------------------------- /docs/Primer.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/docs/Primer.MD -------------------------------------------------------------------------------- /docs/nadel-graphql-gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/docs/nadel-graphql-gateway.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/gradlew.bat -------------------------------------------------------------------------------- /lib/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/build.gradle.kts -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/Nadel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/Nadel.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/NadelExecutionHints.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/NadelExecutionHints.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/NadelExecutionInput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/NadelExecutionInput.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/NadelExecutionParams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/NadelExecutionParams.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/NadelOperationKind.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/NadelOperationKind.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/NadelSchemas.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/NadelSchemas.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/NadelTypeDefinitionRegistry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/NadelTypeDefinitionRegistry.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/NextgenEngine.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/NextgenEngine.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/Service.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/Service.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/ServiceExecution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/ServiceExecution.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/ServiceExecutionFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/ServiceExecutionFactory.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/ServiceExecutionHydrationDetails.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/ServiceExecutionHydrationDetails.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/ServiceExecutionParameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/ServiceExecutionParameters.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/ServiceExecutionResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/ServiceExecutionResult.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/NadelInstructionDefinition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/NadelInstructionDefinition.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelAppliedDirectiveCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelAppliedDirectiveCoordinates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelArgumentCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelArgumentCoordinates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelArgumentParentCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelArgumentParentCoordinates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelChildCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelChildCoordinates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelCoordinatesUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelCoordinatesUtil.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelDirectiveCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelDirectiveCoordinates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelEnumCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelEnumCoordinates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelEnumValueCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelEnumValueCoordinates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelFieldContainerCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelFieldContainerCoordinates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelFieldCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelFieldCoordinates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelImplementingTypeCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelImplementingTypeCoordinates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelInputCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelInputCoordinates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelInputObjectCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelInputObjectCoordinates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelInputObjectFieldCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelInputObjectFieldCoordinates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelInterfaceCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelInterfaceCoordinates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelObjectCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelObjectCoordinates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelScalarCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelScalarCoordinates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelSchemaMemberCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelSchemaMemberCoordinates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelTopLevelDefinitionCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelTopLevelDefinitionCoordinates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelTypeCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelTypeCoordinates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/coordinates/NadelUnionCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/coordinates/NadelUnionCoordinates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/hydration/NadelDefaultHydrationDefinition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/hydration/NadelDefaultHydrationDefinition.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/hydration/NadelHydrationArgumentDefinition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/hydration/NadelHydrationArgumentDefinition.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/hydration/NadelHydrationConditionDefinition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/hydration/NadelHydrationConditionDefinition.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/hydration/NadelHydrationDefinition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/hydration/NadelHydrationDefinition.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/hydration/NadelIdHydrationDefinition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/hydration/NadelIdHydrationDefinition.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/partition/NadelPartitionDefinition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/partition/NadelPartitionDefinition.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/renamed/NadelRenamedDefinition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/renamed/NadelRenamedDefinition.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/stubbed/NadelStubbedDefinition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/stubbed/NadelStubbedDefinition.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/definition/virtualType/NadelVirtualTypeDefinition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/definition/virtualType/NadelVirtualTypeDefinition.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/NadelExecutionContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/NadelExecutionContext.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/NadelIncrementalResultAccumulator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/NadelIncrementalResultAccumulator.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/NadelIncrementalResultSupport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/NadelIncrementalResultSupport.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/NadelServiceExecutionContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/NadelServiceExecutionContext.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/blueprint/IntrospectionService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/blueprint/IntrospectionService.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/blueprint/NadelExecutionBlueprint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/blueprint/NadelExecutionBlueprint.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/blueprint/NadelFastSchemaTraverser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/blueprint/NadelFastSchemaTraverser.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/blueprint/NadelFieldInstruction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/blueprint/NadelFieldInstruction.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/blueprint/NadelSchemaTraverserElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/blueprint/NadelSchemaTraverserElement.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/blueprint/NadelSchemaTraverserVisitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/blueprint/NadelSchemaTraverserVisitor.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/blueprint/NadelTypeRenameInstruction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/blueprint/NadelTypeRenameInstruction.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/blueprint/NadelVirtualTypeBlueprintFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/blueprint/NadelVirtualTypeBlueprintFactory.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/blueprint/NadelVirtualTypeContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/blueprint/NadelVirtualTypeContext.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/blueprint/hydration/NadelHydrationArgument.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/blueprint/hydration/NadelHydrationArgument.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/blueprint/hydration/NadelHydrationCondition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/blueprint/hydration/NadelHydrationCondition.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/blueprint/hydration/NadelHydrationStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/blueprint/hydration/NadelHydrationStrategy.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/document/DocumentPredicates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/document/DocumentPredicates.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/instrumentation/NadelInstrumentationTimer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/instrumentation/NadelInstrumentationTimer.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/log/NadelLog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/log/NadelLog.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/plan/NadelExecutionPlan.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/plan/NadelExecutionPlan.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/plan/NadelExecutionPlanFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/plan/NadelExecutionPlanFactory.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/NadelDeepRenameTransform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/NadelDeepRenameTransform.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/NadelRenameArgumentInputTypesTransform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/NadelRenameArgumentInputTypesTransform.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/NadelRenameTransform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/NadelRenameTransform.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/NadelServiceTypeFilterTransform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/NadelServiceTypeFilterTransform.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/NadelTransform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/NadelTransform.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/NadelTransformJavaCompat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/NadelTransformJavaCompat.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/NadelTransformServiceExecutionContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/NadelTransformServiceExecutionContext.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/NadelTransformUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/NadelTransformUtil.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/NadelTypeRenameResultTransform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/NadelTypeRenameResultTransform.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/artificial/NadelAliasHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/artificial/NadelAliasHelper.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/hydration/NadelHydrationFieldsBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/hydration/NadelHydrationFieldsBuilder.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/hydration/NadelHydrationInputBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/hydration/NadelHydrationInputBuilder.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/hydration/NadelHydrationTransform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/hydration/NadelHydrationTransform.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/hydration/NadelHydrationUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/hydration/NadelHydrationUtil.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/hydration/batch/NadelNewBatchHydrator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/hydration/batch/NadelNewBatchHydrator.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/hydration/batch/NadelResolvedObjectBatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/hydration/batch/NadelResolvedObjectBatch.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/partition/NadelFieldPartition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/partition/NadelFieldPartition.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/partition/NadelFieldPartitionContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/partition/NadelFieldPartitionContext.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/partition/NadelFieldPartitionException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/partition/NadelFieldPartitionException.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/partition/NadelPartitionKeyExtractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/partition/NadelPartitionKeyExtractor.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/partition/NadelPartitionListMerger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/partition/NadelPartitionListMerger.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/partition/NadelPartitionTransform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/partition/NadelPartitionTransform.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/partition/NadelPartitionTransformHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/partition/NadelPartitionTransformHook.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/query/DynamicServiceResolution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/query/DynamicServiceResolution.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/query/NFUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/query/NFUtil.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/query/NadelFieldToService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/query/NadelFieldToService.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/query/NadelQueryPath.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/query/NadelQueryPath.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/query/NadelQueryTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/query/NadelQueryTransformer.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/query/NadelQueryTransformerJavaCompat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/query/NadelQueryTransformerJavaCompat.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/result/NadelResultInstruction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/result/NadelResultInstruction.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/result/NadelResultTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/result/NadelResultTransformer.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/result/json/JsonNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/result/json/JsonNode.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/result/json/JsonNodeExtractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/result/json/JsonNodeExtractor.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/result/json/JsonNodes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/result/json/JsonNodes.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/result/json/NadelJsonNodeIterator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/result/json/NadelJsonNodeIterator.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/skipInclude/NadelSkipIncludeTransform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/skipInclude/NadelSkipIncludeTransform.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/transform/stub/NadelStubTransform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/transform/stub/NadelStubTransform.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/util/Aliases.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/util/Aliases.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/util/CollectionUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/util/CollectionUtil.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/util/GraphQLUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/util/GraphQLUtil.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/util/JsonUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/util/JsonUtil.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/util/NadelPseudoSealedType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/util/NadelPseudoSealedType.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/engine/util/Util.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/engine/util/Util.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/error/NadelGraphQLErrorException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/error/NadelGraphQLErrorException.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/error/NadelGraphQLErrorExceptionKotlinCompat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/error/NadelGraphQLErrorExceptionKotlinCompat.java -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/hints/AllDocumentVariablesHint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/hints/AllDocumentVariablesHint.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/hints/LegacyOperationNamesHint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/hints/LegacyOperationNamesHint.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/hints/NadelDeferSupportHint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/hints/NadelDeferSupportHint.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/hints/NadelExecuteOnEngineSchemaHint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/hints/NadelExecuteOnEngineSchemaHint.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/hints/NadelHydrationExecutableSourceFields.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/hints/NadelHydrationExecutableSourceFields.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/hints/NadelHydrationFilterObjectTypesHint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/hints/NadelHydrationFilterObjectTypesHint.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/hints/NadelSharedTypeRenamesHint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/hints/NadelSharedTypeRenamesHint.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/hints/NadelShortCircuitEmptyQueryHint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/hints/NadelShortCircuitEmptyQueryHint.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/hints/NadelVirtualTypeSupportHint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/hints/NadelVirtualTypeSupportHint.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/hints/NewResultMergerAndNamespacedTypename.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/hints/NewResultMergerAndNamespacedTypename.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/hooks/NadelCreateServiceExecutionContextParams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/hooks/NadelCreateServiceExecutionContextParams.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/hooks/NadelExecutionHooks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/hooks/NadelExecutionHooks.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/hooks/ServiceOrError.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/hooks/ServiceOrError.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/instrumentation/ChainedNadelInstrumentation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/instrumentation/ChainedNadelInstrumentation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/instrumentation/NadelInstrumentation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/instrumentation/NadelInstrumentation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/result/NadelResultMerger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/result/NadelResultMerger.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/result/NadelResultPath.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/result/NadelResultPath.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/result/NadelResultPathBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/result/NadelResultPathBuilder.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/result/NadelResultPathSegment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/result/NadelResultPathSegment.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/result/NadelResultTracker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/result/NadelResultTracker.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/schema/NadelDirectives.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/schema/NadelDirectives.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/schema/NeverWiringFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/schema/NeverWiringFactory.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/schema/OverallSchemaGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/schema/OverallSchemaGenerator.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/schema/QuerySchemaGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/schema/QuerySchemaGenerator.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/schema/SchemaTransformationHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/schema/SchemaTransformationHook.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/schema/ServiceSchemaProblem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/schema/ServiceSchemaProblem.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/schema/UnderlyingSchemaGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/schema/UnderlyingSchemaGenerator.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/time/NadelInternalLatencyTracker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/time/NadelInternalLatencyTracker.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/time/NadelInternalLatencyTrackerImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/time/NadelInternalLatencyTrackerImpl.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/time/NadelStopwatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/time/NadelStopwatch.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/util/ErrorUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/util/ErrorUtil.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/util/GraphQLDefUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/util/GraphQLDefUtil.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/util/GraphQLUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/util/GraphQLUtil.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/util/IteratorUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/util/IteratorUtil.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/util/LogUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/util/LogUtil.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/util/NadelFieldMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/util/NadelFieldMap.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/util/NamespacedUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/util/NamespacedUtil.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/util/OperationNameUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/util/OperationNameUtil.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/util/SchemaUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/util/SchemaUtil.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/util/TimeUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/util/TimeUtil.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/util/TraversalUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/util/TraversalUtil.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelAssignableTypeValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelAssignableTypeValidation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelEnumValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelEnumValidation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelFieldValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelFieldValidation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelIdHydrationDefinitionParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelIdHydrationDefinitionParser.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelInputObjectValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelInputObjectValidation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelInstructionDefinitionParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelInstructionDefinitionParser.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelInstructionDefinitionRegistry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelInstructionDefinitionRegistry.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelInterfaceValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelInterfaceValidation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelInterfaceValidationError.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelInterfaceValidationError.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelNamespaceValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelNamespaceValidation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelPartitionValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelPartitionValidation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelSchemaHydrationValidationError.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelSchemaHydrationValidationError.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelSchemaValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelSchemaValidation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelSchemaValidationError.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelSchemaValidationError.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelSchemaValidationFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelSchemaValidationFactory.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelSchemaValidationHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelSchemaValidationHook.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelSchemaValidationInterimResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelSchemaValidationInterimResult.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelSchemaValidationResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelSchemaValidationResult.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelServiceSchemaElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelServiceSchemaElement.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelStubbedValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelStubbedValidation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelStubbedValidationError.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelStubbedValidationError.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelTypeValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelTypeValidation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelTypeWrappingValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelTypeWrappingValidation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelUnionValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelUnionValidation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelValidationContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelValidationContext.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelVirtualTypeValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelVirtualTypeValidation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/NadelVirtualTypeValidationError.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/NadelVirtualTypeValidationError.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/hydration/NadelHydrationArgumentTypeValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/hydration/NadelHydrationArgumentTypeValidation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/hydration/NadelHydrationArgumentValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/hydration/NadelHydrationArgumentValidation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/hydration/NadelHydrationConditionValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/hydration/NadelHydrationConditionValidation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/hydration/NadelHydrationSourceFieldValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/hydration/NadelHydrationSourceFieldValidation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/hydration/NadelHydrationSourceFieldValidation2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/hydration/NadelHydrationSourceFieldValidation2.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/hydration/NadelHydrationValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/hydration/NadelHydrationValidation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/hydration/NadelHydrationVirtualTypeValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/hydration/NadelHydrationVirtualTypeValidation.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/util/NadelBuiltInTypes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/util/NadelBuiltInTypes.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/util/NadelCombinedTypeUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/util/NadelCombinedTypeUtil.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/util/NadelGetReachableTypes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/util/NadelGetReachableTypes.kt -------------------------------------------------------------------------------- /lib/src/main/java/graphql/nadel/validation/util/NadelSchemaUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/main/java/graphql/nadel/validation/util/NadelSchemaUtil.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/Jackson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/Jackson.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/NadelSchemasTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/NadelSchemasTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/NadelStopwatchTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/NadelStopwatchTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/archunit/ArchUnitEqualsClassesExactly.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/archunit/ArchUnitEqualsClassesExactly.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/archunit/ArchUnitUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/archunit/ArchUnitUtil.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/archunit/ForbiddenGraphQLJavaUsageTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/archunit/ForbiddenGraphQLJavaUsageTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/archunit/NadelPrefixTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/archunit/NadelPrefixTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/archunit/NadelPseudoSealedTypeKtTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/archunit/NadelPseudoSealedTypeKtTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/archunit/NioArchTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/archunit/NioArchTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelArgumentCoordinatesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelArgumentCoordinatesTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelDirectiveCoordinatesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelDirectiveCoordinatesTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelEnumCoordinatesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelEnumCoordinatesTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelEnumValueCoordinatesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelEnumValueCoordinatesTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelFieldCoordinatesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelFieldCoordinatesTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelInputObjectCoordinatesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelInputObjectCoordinatesTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelInterfaceCoordinatesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelInterfaceCoordinatesTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelObjectCoordinatesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelObjectCoordinatesTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelScalarCoordinatesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelScalarCoordinatesTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelSchemaMemberCoordinatesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelSchemaMemberCoordinatesTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelUnionCoordinatesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/definition/coordinates/NadelUnionCoordinatesTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/definition/stubbed/NadelStubbedDefinitionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/definition/stubbed/NadelStubbedDefinitionTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/engine/NadelIncrementalResultAccumulatorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/engine/NadelIncrementalResultAccumulatorTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/engine/NadelIncrementalResultSupportTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/engine/NadelIncrementalResultSupportTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/engine/blueprint/NadelVirtualTypeBlueprintFactoryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/engine/blueprint/NadelVirtualTypeBlueprintFactoryTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/engine/instrumentation/NadelInstrumentationTimerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/engine/instrumentation/NadelInstrumentationTimerTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/engine/transform/result/json/NadelJsonNodeIteratorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/engine/transform/result/json/NadelJsonNodeIteratorTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/engine/util/CollectionUtilKtTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/engine/util/CollectionUtilKtTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/engine/util/GraphQLUtilKtTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/engine/util/GraphQLUtilKtTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/instrumentation/ChainedNadelInstrumentationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/instrumentation/ChainedNadelInstrumentationTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/result/NadelResultTrackerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/result/NadelResultTrackerTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/schema/NadelDirectivesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/schema/NadelDirectivesTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/schema/OverallSchemaGeneratorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/schema/OverallSchemaGeneratorTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/test/Debug.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/test/Debug.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/test/Mocking.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/test/Mocking.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/test/NadelTransformAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/test/NadelTransformAdapter.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/test/NadelTransformJavaCompatAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/test/NadelTransformJavaCompatAdapter.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/time/NadelInternalLatencyTrackerImplTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/time/NadelInternalLatencyTrackerImplTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/transform/NadelTransformJavaCompatTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/transform/NadelTransformJavaCompatTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/util/IteratorUtilTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/util/IteratorUtilTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/util/SchemaUtilTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/util/SchemaUtilTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/util/TraversalUtilKtTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/util/TraversalUtilKtTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/util/UnderlyingSchemaGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/util/UnderlyingSchemaGenerator.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/NadelEnumValidationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/NadelEnumValidationTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/NadelFieldValidationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/NadelFieldValidationTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/NadelHydrationArgumentTypeValidationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/NadelHydrationArgumentTypeValidationTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/NadelHydrationValidationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/NadelHydrationValidationTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/NadelHydrationValidationTest2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/NadelHydrationValidationTest2.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/NadelHydrationWhenConditionValidationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/NadelHydrationWhenConditionValidationTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/NadelInputValidationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/NadelInputValidationTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/NadelInterfaceValidationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/NadelInterfaceValidationTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/NadelNamespaceValidationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/NadelNamespaceValidationTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/NadelPartitionValidationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/NadelPartitionValidationTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/NadelPolymorphicHydrationValidationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/NadelPolymorphicHydrationValidationTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/NadelRenameValidationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/NadelRenameValidationTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/NadelSchemaValidationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/NadelSchemaValidationTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/NadelStubbedValidationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/NadelStubbedValidationTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/NadelTypeValidationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/NadelTypeValidationTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/NadelUnionValidationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/NadelUnionValidationTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/NadelValidationDefinitionsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/NadelValidationDefinitionsTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/NadelValidationTestFixture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/NadelValidationTestFixture.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/NadelVirtualTypeValidationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/NadelVirtualTypeValidationTest.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/util/AssertUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/util/AssertUtil.kt -------------------------------------------------------------------------------- /lib/src/test/kotlin/graphql/nadel/validation/util/NadelBuiltInTypesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/lib/src/test/kotlin/graphql/nadel/validation/util/NadelBuiltInTypesTest.kt -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "nadel" 2 | include("lib", "test") 3 | -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/README.md -------------------------------------------------------------------------------- /test/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/build.gradle.kts -------------------------------------------------------------------------------- /test/src/test/java/graphql/nadel/tests/hooks/JavaAriTransform.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/java/graphql/nadel/tests/hooks/JavaAriTransform.java -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/CentralSchemaTesting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/CentralSchemaTesting.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/EngineTestHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/EngineTestHook.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/EngineTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/EngineTests.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/GatewaySchemaWiringFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/GatewaySchemaWiringFactory.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/Jackson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/Jackson.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/JsonAssert.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/JsonAssert.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/JsonAssertions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/JsonAssertions.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/ProjectConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/ProjectConfig.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/ServiceValidationException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/ServiceValidationException.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/TestFixture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/TestFixture.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/HydrationDetailsHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/HydrationDetailsHook.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/`introspection-with-variables-ff-on`.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/`introspection-with-variables-ff-on`.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/`java-ari-transforms`.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/`java-ari-transforms`.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/`large-query-but-not-deep`.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/`large-query-but-not-deep`.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/ari-transforms.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/ari-transforms.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/batching-absent-source-input.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/batching-absent-source-input.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/batching-of-hydration-list-with-partition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/batching-of-hydration-list-with-partition.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/batching-single-source-id.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/batching-single-source-id.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/can-delete-fields-and-types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/can-delete-fields-and-types.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/can-specify-max-introspection-response-size.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/can-specify-max-introspection-response-size.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/chain-input-rename-with-argument-transform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/chain-input-rename-with-argument-transform.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/chain-rename-transform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/chain-rename-transform.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/chained-instrumentation-works-as-expected.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/chained-instrumentation-works-as-expected.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/document-variables-handling.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/document-variables-handling.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/dynamic-service-resolution-hooks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/dynamic-service-resolution-hooks.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/execution-id-is-transferred-from-input.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/execution-id-is-transferred-from-input.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/graphqlcontext-is-present-on-input.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/graphqlcontext-is-present-on-input.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/hydration-matching-using-index-with-lists.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/hydration-matching-using-index-with-lists.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/instrumentation is called.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/instrumentation is called.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/legacy-operation-names.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/legacy-operation-names.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/let-jsw-do-jsw-things.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/let-jsw-do-jsw-things.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/monitor-emits-timings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/monitor-emits-timings.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/namespaced-typename.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/namespaced-typename.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/new-batching-no-source-inputs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/new-batching-no-source-inputs.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/new-result-merging.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/new-result-merging.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/operation-depth-limit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/operation-depth-limit.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/polymorphic-hydration-hooks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/polymorphic-hydration-hooks.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/remove-fields.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/remove-fields.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/scalar-transforms.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/scalar-transforms.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/schema-transformation-is-applied.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/schema-transformation-is-applied.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/shared-types-rename.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/shared-types-rename.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/transformer-on-hydration-fields.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/transformer-on-hydration-fields.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/hooks/two-transforms-on-a-field.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/hooks/two-transforms-on-a-field.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/NadelLegacyIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/NadelLegacyIntegrationTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/basic/can generate legacy operation names.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/basic/can generate legacy operation names.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/basic/large query but not deep snapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/basic/large query but not deep snapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/basic/large query but not deep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/basic/large query but not deep.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/basic/missing null variables are handled.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/basic/missing null variables are handled.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/basic/mutation can be executed snapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/basic/mutation can be executed snapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/basic/mutation can be executed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/basic/mutation can be executed.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/basic/one call to one service snapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/basic/one call to one service snapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/basic/one call to one service.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/basic/one call to one service.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/basic/operation depth limit snapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/basic/operation depth limit snapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/basic/operation depth limit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/basic/operation depth limit.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/basic/operation field count limit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/basic/operation field count limit.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/basic/service types are filtered.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/basic/service types are filtered.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/basic/subscription can be executed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/basic/subscription can be executed.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/deep rename inside list.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/deep rename inside list.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/deep rename inside rename.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/deep rename inside rename.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/deep rename of an object.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/deep rename of an object.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/deep rename of list of list.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/deep rename of list of list.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/deep rename of list.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/deep rename of list.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/deep rename returns null.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/deep rename returns null.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/deep rename with interfaces.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/deep rename with interfaces.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/deep rename with unions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/deep rename with unions.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/deep rename works snapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/deep rename works snapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/deep rename works.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/deep rename works.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/two deep renames snapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/two deep renames snapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/two deep renames.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/deep renames/two deep renames.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/field removed/top level field is removed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/field removed/top level field is removed.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/hidden/can query non hidden fields.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/hidden/can query non hidden fields.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/hidden/cannot query hidden fields.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/hidden/cannot query hidden fields.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/introspection/can ask for query typename.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/introspection/can ask for query typename.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/java-compat/java ari transform snapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/java-compat/java ari transform snapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/java-compat/java ari transform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/java-compat/java ari transform.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/monitor/monitor emits timings snapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/monitor/monitor emits timings snapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/monitor/monitor emits timings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/monitor/monitor emits timings.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/new hydration/basic hydration snapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/new hydration/basic hydration snapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/new hydration/basic hydration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/new hydration/basic hydration.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/new hydration/batching of hydration list.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/new hydration/batching of hydration list.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/new hydration/hydration input is absent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/new hydration/hydration input is absent.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/new hydration/hydration input is null.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/new hydration/hydration input is null.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/new hydration/hydration list input.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/new hydration/hydration list input.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/new hydration/hydration with interfaces.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/new hydration/hydration with interfaces.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/oneOf/oneOf fails when nested input.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/oneOf/oneOf fails when nested input.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/oneOf/oneOf fails when values are passed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/oneOf/oneOf fails when values are passed.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/oneOf/oneOf successful snapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/oneOf/oneOf successful snapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/oneOf/oneOf successful.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/oneOf/oneOf successful.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/a lot of renames snapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/a lot of renames snapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/a lot of renames.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/a lot of renames.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/chain rename transform snapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/chain rename transform snapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/chain rename transform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/chain rename transform.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/correct typename is returned.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/correct typename is returned.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/let jsw do jsw things snapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/let jsw do jsw things snapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/let jsw do jsw things.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/let jsw do jsw things.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/nested renamed types snapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/nested renamed types snapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/nested renamed types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/nested renamed types.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/rename inside hydration snapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/rename inside hydration snapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/rename inside hydration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/rename inside hydration.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/rename inside renamed type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/rename inside renamed type.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/rename on shared abstract type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/rename on shared abstract type.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/rename with interfaces snapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/rename with interfaces snapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/rename with interfaces.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/rename with interfaces.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/rename with more interfaces.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/rename with more interfaces.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/renamed list inside renamed list.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/renamed list inside renamed list.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/string field rename snapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/string field rename snapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/string field rename.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/string field rename.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/types/renamed type in interface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/types/renamed type in interface.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/types/renamed type in union.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/types/renamed type in union.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/renames/types/renamed type inside list.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/renames/types/renamed type inside list.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/custom json scalar as input type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/custom json scalar as input type.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/date time scalar as input type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/date time scalar as input type.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/date time scalar as output type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/date time scalar as output type.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/hydrating json data snapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/hydrating json data snapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/hydrating json data.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/hydrating json data.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/hydrating using date time as arg.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/hydrating using date time as arg.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/hydrating using json data as arg.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/hydrating using json data as arg.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/hydrating using long as arg.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/hydrating using long as arg.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/hydrating using url as arg.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/hydrating using url as arg.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/long scalar as input type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/long scalar as input type.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/long scalar as output type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/long scalar as output type.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/renaming date time typed field.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/renaming date time typed field.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/renaming json typed field.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/renaming json typed field.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/renaming url typed field.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/renaming url typed field.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/url scalar as input type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/url scalar as input type.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/url scalar as output type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/scalars/url scalar as output type.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/legacy/schema/can delete fields and types.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/legacy/schema/can delete fields and types.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/CombineExecutionResults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/CombineExecutionResults.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/GraphQLServiceExecution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/GraphQLServiceExecution.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/MigrateTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/MigrateTests.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/NadelIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/NadelIntegrationTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/SimpleClassNameTypeResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/SimpleClassNameTypeResolver.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/StripDefer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/StripDefer.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/TestExecutionCapture.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/TestExecutionCapture.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/TestSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/TestSnapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/UnderlyingSchemaGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/UnderlyingSchemaGenerator.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/UpdateTestSnapshots.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/UpdateTestSnapshots.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/Util.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/Util.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/basic/BasicObjectSchemaTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/basic/BasicObjectSchemaTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/basic/EchoTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/basic/EchoTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/basic/EchoTestSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/basic/EchoTestSnapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/basic/HiddenFieldHintOff.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/basic/HiddenFieldHintOff.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/basic/HiddenFieldHintOffSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/basic/HiddenFieldHintOffSnapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/basic/HiddenFieldHintOn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/basic/HiddenFieldHintOn.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/basic/HiddenFieldHintOnSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/basic/HiddenFieldHintOnSnapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/defer/DeferOnListItems.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/defer/DeferOnListItems.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/defer/DeferThrowsErrorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/defer/DeferThrowsErrorTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/defer/DeferWithIfFalseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/defer/DeferWithIfFalseTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/defer/DeferWithLabelTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/defer/DeferWithLabelTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/defer/DeferWithLabelTestSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/defer/DeferWithLabelTestSnapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/defer/DeferWithoutLabelTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/defer/DeferWithoutLabelTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/defer/MultipleDeferDirectivesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/defer/MultipleDeferDirectivesTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/defer/NestedDefersTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/defer/NestedDefersTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/defer/NestedDefersTestSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/defer/NestedDefersTestSnapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/execution/BasicUnionExecutionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/execution/BasicUnionExecutionTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/hydration/HydrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/hydration/HydrationTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/hydration/HydrationTestSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/hydration/HydrationTestSnapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/hydration/defer/DeferGroupingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/hydration/defer/DeferGroupingTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/instrumentation/Instrumentation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/instrumentation/Instrumentation.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/partition/ErrorOnPrimaryCallTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/partition/ErrorOnPrimaryCallTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/partition/MutationPartitionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/partition/MutationPartitionTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/partition/NamespacedPartitionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/partition/NamespacedPartitionTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/partition/NestedPartitionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/partition/NestedPartitionTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/partition/NoPartitionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/partition/NoPartitionTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/partition/NoPartitionTestSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/partition/NoPartitionTestSnapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/partition/PartialPartitionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/partition/PartialPartitionTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/partition/SimplePartitionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/partition/SimplePartitionTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/rename/RenamedInputTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/rename/RenamedInputTypeTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/rename/RenamedSharedInputTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/rename/RenamedSharedInputTypeTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubAliasTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubAliasTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubAliasTestSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubAliasTestSnapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubEnumArgumentTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubEnumArgumentTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubEnumArgumentTestSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubEnumArgumentTestSnapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubEnumInputFieldTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubEnumInputFieldTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubEnumTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubEnumTypeTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubEnumTypeTestSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubEnumTypeTestSnapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubExampleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubExampleTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubExampleTestSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubExampleTestSnapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubExtensionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubExtensionTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubExtensionTestSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubExtensionTestSnapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubInterfaceFieldImplTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubInterfaceFieldImplTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubInterfaceFieldTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubInterfaceFieldTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubListTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubListTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubListTestSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubListTestSnapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubNestedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubNestedTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubNestedTestSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubNestedTestSnapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubOnErrorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubOnErrorTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubOnErrorTestSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubOnErrorTestSnapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubRootLevelTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubRootLevelTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubRootLevelTestSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubRootLevelTestSnapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubRootMutationFieldTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubRootMutationFieldTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubTestSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubTestSnapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubTypeTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubTypeTestSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubTypeTestSnapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubUnionTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubUnionTypeTest.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubUnionTypeTestSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/next/fixtures/stub/StubUnionTypeTestSnapshot.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/transforms/RemoveFieldTestTransform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/transforms/RemoveFieldTestTransform.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/util/FileUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/util/FileUtil.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/util/NadelTransformAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/util/NadelTransformAdapter.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/util/NadelUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/util/NadelUtil.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/util/ReflectionUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/util/ReflectionUtil.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/util/StriktUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/util/StriktUtil.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/graphql/nadel/tests/util/StringUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/kotlin/graphql/nadel/tests/util/StringUtil.kt -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/basic/call-with-variables-inside-input-objects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/basic/call-with-variables-inside-input-objects.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/basic/can-generate-legacy-operation-names.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/basic/can-generate-legacy-operation-names.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/basic/large-query-but-not-deep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/basic/large-query-but-not-deep.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/basic/missing-null-variables-are-handled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/basic/missing-null-variables-are-handled.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/basic/mutation-can-be-executed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/basic/mutation-can-be-executed.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/basic/one-call-to-one-service-with-list-result.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/basic/one-call-to-one-service-with-list-result.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/basic/one-call-to-one-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/basic/one-call-to-one-service.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/basic/operation-depth-limit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/basic/operation-depth-limit.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/basic/operation-field-count-limit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/basic/operation-field-count-limit.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/basic/schema-transformation-is-applied.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/basic/schema-transformation-is-applied.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/basic/service-types-are-completely-filtered.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/basic/service-types-are-completely-filtered.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/basic/service-types-are-filtered.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/basic/service-types-are-filtered.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/basic/subscription-can-be-executed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/basic/subscription-can-be-executed.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/chained transforms/ari use case/ari-argument-transform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/chained transforms/ari use case/ari-argument-transform.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/chained transforms/two-transforms-on-a-field.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/chained transforms/two-transforms-on-a-field.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/deep-rename-inside-batch-hydration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/deep-rename-inside-batch-hydration.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/deep-rename-inside-deep-rename.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/deep-rename-inside-deep-rename.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/deep-rename-inside-hydration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/deep-rename-inside-hydration.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/deep-rename-inside-hydrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/deep-rename-inside-hydrations.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/deep-rename-inside-list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/deep-rename-inside-list.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/deep-rename-inside-rename.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/deep-rename-inside-rename.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/deep-rename-inside-renamed-type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/deep-rename-inside-renamed-type.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/deep-rename-nested-inside-renamed-type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/deep-rename-nested-inside-renamed-type.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/deep-rename-not-asked-for-with-unions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/deep-rename-not-asked-for-with-unions.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/deep-rename-of-an-object.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/deep-rename-of-an-object.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/deep-rename-of-list-of-list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/deep-rename-of-list-of-list.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/deep-rename-of-list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/deep-rename-of-list.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/deep-rename-returns-null-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/deep-rename-returns-null-2.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/deep-rename-returns-null.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/deep-rename-returns-null.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/deep-rename-with-argument-works.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/deep-rename-with-argument-works.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/deep-rename-with-interfaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/deep-rename-with-interfaces.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/deep-rename-with-more-interfaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/deep-rename-with-more-interfaces.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/deep-rename-with-more-unions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/deep-rename-with-more-unions.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/deep-rename-with-unions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/deep-rename-with-unions.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/deep-rename-works.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/deep-rename-works.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/deep renames/two-deep-renames.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/deep renames/two-deep-renames.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/document variable handling/inlined-all-arguments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/document variable handling/inlined-all-arguments.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/document variable handling/inlined-json-arguments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/document variable handling/inlined-json-arguments.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/document variable handling/primitive-json-arguments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/document variable handling/primitive-json-arguments.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/execution id/execution-id-is-transferred-from-input.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/execution id/execution-id-is-transferred-from-input.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/field removed/field-in-a-selection-set-is-removed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/field removed/field-in-a-selection-set-is-removed.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/field removed/field-in-non-hydrated-query-is-removed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/field removed/field-in-non-hydrated-query-is-removed.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/field removed/field-is-removed-from-hydrated-field.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/field removed/field-is-removed-from-hydrated-field.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/field removed/field-with-selections-is-removed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/field removed/field-with-selections-is-removed.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/field removed/hydrated-field-is-removed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/field removed/hydrated-field-is-removed.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/field removed/hydration-top-level-field-is-removed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/field removed/hydration-top-level-field-is-removed.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/field removed/namespaced-field-is-removed-with-renames.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/field removed/namespaced-field-is-removed-with-renames.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/field removed/namespaced-field-is-removed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/field removed/namespaced-field-is-removed.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/field removed/nested-hydrated-field-is-removed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/field removed/nested-hydrated-field-is-removed.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/field removed/one-of-top-level-fields-is-removed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/field removed/one-of-top-level-fields-is-removed.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/field removed/top-level-field-is-removed-hint-is-off.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/field removed/top-level-field-is-removed-hint-is-off.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/field removed/top-level-field-is-removed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/field removed/top-level-field-is-removed.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/graphqlcontext/graphqlcontext-is-present-on-input.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/graphqlcontext/graphqlcontext-is-present-on-input.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/hidden/can-query-non-hidden-fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/hidden/can-query-non-hidden-fields.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/hidden/cannot-query-hidden-fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/hidden/cannot-query-hidden-fields.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/hidden/cannot-query-hidden-top-level-fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/hidden/cannot-query-hidden-top-level-fields.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/hidden/introspection-does-not-show-hidden-fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/hidden/introspection-does-not-show-hidden-fields.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/instrumentation/instrumentation-is-called.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/instrumentation/instrumentation-is-called.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/introspection/can-ask-for-query-typename.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/introspection/can-ask-for-query-typename.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/introspection/introspection-with-variables-ff-on.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/introspection/introspection-with-variables-ff-on.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/introspection/no-introspections-on-subscriptions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/introspection/no-introspections-on-subscriptions.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/java-compat/java-ari-transform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/java-compat/java-ari-transform.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/monitor/monitor-emits-timings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/monitor/monitor-emits-timings.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/namespaced/not-nullable-namespaced-child-has-null.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/namespaced/not-nullable-namespaced-child-has-null.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/namespaced/not-nullable-namespaced-child-is-absent-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/namespaced/not-nullable-namespaced-child-is-absent-2.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/namespaced/not-nullable-namespaced-child-is-absent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/namespaced/not-nullable-namespaced-child-is-absent.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/namespaced/typename-is-passed-on-namespaced-fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/namespaced/typename-is-passed-on-namespaced-fields.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/namespaced/typename-is-resolved-on-namespaced-fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/namespaced/typename-is-resolved-on-namespaced-fields.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/namespaced/typename-is-wiped-when-other-data-fails.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/namespaced/typename-is-wiped-when-other-data-fails.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/basic-hydration-directive-based.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/basic-hydration-directive-based.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/basic-hydration-with-actor-field-rename.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/basic-hydration-with-actor-field-rename.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/basic-hydration-with-static-arg-array.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/basic-hydration-with-static-arg-array.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/basic-hydration-with-static-arg-boolean.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/basic-hydration-with-static-arg-boolean.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/basic-hydration-with-static-arg-float.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/basic-hydration-with-static-arg-float.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/basic-hydration-with-static-arg-integer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/basic-hydration-with-static-arg-integer.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/basic-hydration-with-static-arg-object.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/basic-hydration-with-static-arg-object.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/basic-hydration-with-static-args.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/basic-hydration-with-static-args.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/basic-hydration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/basic-hydration.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/batch-hydration-input-is-absent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/batch-hydration-input-is-absent.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/batch-hydration-input-is-null.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/batch-hydration-input-is-null.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/batch-hydration-null-source-object.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/batch-hydration-null-source-object.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/batch-hydration-with-renamed-actor-field.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/batch-hydration-with-renamed-actor-field.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/batching-of-hydration-list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/batching-of-hydration-list.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/batching/batching-absent-source-input.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/batching/batching-absent-source-input.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/batching/batching-no-source-inputs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/batching/batching-no-source-inputs.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/batching/batching-single-source-id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/batching/batching-single-source-id.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/hydration-batching-returns-null.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/hydration-batching-returns-null.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/hydration-call-forwards-error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/hydration-call-forwards-error.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/hydration-from-field-in-interface.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/hydration-from-field-in-interface.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/hydration-input-is-absent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/hydration-input-is-absent.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/hydration-input-is-empty-list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/hydration-input-is-empty-list.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/hydration-input-is-null.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/hydration-input-is-null.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/hydration-inside-a-renamed-field.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/hydration-inside-a-renamed-field.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/hydration-list-input.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/hydration-list-input.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/hydration-list-with-batching.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/hydration-list-with-batching.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/hydration-list-with-one-element.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/hydration-list-with-one-element.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/hydration-with-interfaces-no-source-id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/hydration-with-interfaces-no-source-id.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/hydration-with-interfaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/hydration-with-interfaces.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/hydration-with-more-interfaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/hydration-with-more-interfaces.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/index-hydration-all-null-ids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/index-hydration-all-null-ids.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/index-hydration-with-partitioned-inputs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/index-hydration-with-partitioned-inputs.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/index/hydration-matching-using-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/index/hydration-matching-using-index.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/query-with-three-nested-hydrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/query-with-three-nested-hydrations.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/same-source-for-2-hydrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/same-source-for-2-hydrations.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/synthetic-hydration-forwards-error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/synthetic-hydration-forwards-error.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/synthetic-hydration-input-is-empty-list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/synthetic-hydration-input-is-empty-list.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/synthetic-hydration-input-is-null.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/synthetic-hydration-input-is-null.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/synthetic-hydration-with-renamed-type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/synthetic-hydration-with-renamed-type.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/new hydration/transformer-on-hydration-fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/new hydration/transformer-on-hydration-fields.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/oneOf/one-of-fails-when-2-values-are-passed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/oneOf/one-of-fails-when-2-values-are-passed.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/oneOf/one-of-fails-when-invalid-variables-are-passed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/oneOf/one-of-fails-when-invalid-variables-are-passed.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/oneOf/one-of-fails-when-nested-input.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/oneOf/one-of-fails-when-nested-input.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/oneOf/one-of-fails-when-no-values-are-passed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/oneOf/one-of-fails-when-no-values-are-passed.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/oneOf/one-of-fails-when-null-value-is-passed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/oneOf/one-of-fails-when-null-value-is-passed.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/oneOf/one-of-successful.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/oneOf/one-of-successful.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/polymorphism/two-top-level-fields-with-a-fragment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/polymorphism/two-top-level-fields-with-a-fragment.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/a-lot-of-renames.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/a-lot-of-renames.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/chain-rename-transform-with-type-rename.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/chain-rename-transform-with-type-rename.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/chain-rename-transform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/chain-rename-transform.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/correct-typename-is-returned.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/correct-typename-is-returned.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/interface-rename-direct-works-as-expected.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/interface-rename-direct-works-as-expected.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/let-jsw-do-jsw-things.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/let-jsw-do-jsw-things.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/nested-renamed-types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/nested-renamed-types.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/query-to-two-services-with-field-rename.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/query-to-two-services-with-field-rename.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/rename-inside-hydration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/rename-inside-hydration.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/rename-inside-multiple-hydrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/rename-inside-multiple-hydrations.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/rename-inside-renamed-type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/rename-inside-renamed-type.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/rename-nested-inside-renamed-type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/rename-nested-inside-renamed-type.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/rename-on-shared-abstract-type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/rename-on-shared-abstract-type.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/rename-with-first-path-element-returning-null.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/rename-with-first-path-element-returning-null.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/rename-with-interfaces-asking-typename.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/rename-with-interfaces-asking-typename.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/rename-with-interfaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/rename-with-interfaces.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/rename-with-more-interfaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/rename-with-more-interfaces.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/renamed-list-inside-renamed-list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/renamed-list-inside-renamed-list.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/renamed-top-level-field-with-argument.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/renamed-top-level-field-with-argument.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/string-field-rename.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/string-field-rename.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/types/renamed-interface-type-is-shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/types/renamed-interface-type-is-shared.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/types/renamed-type-in-interface.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/types/renamed-type-in-interface.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/types/renamed-type-in-union.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/types/renamed-type-in-union.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/types/renamed-type-inside-batch-hydration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/types/renamed-type-inside-batch-hydration.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/types/renamed-type-inside-deep-rename.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/types/renamed-type-inside-deep-rename.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/types/renamed-type-inside-hydration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/types/renamed-type-inside-hydration.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/types/renamed-type-inside-list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/types/renamed-type-inside-list.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/types/renamed-type-inside-renamed-field.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/types/renamed-type-inside-renamed-field.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/types/renamed-type-is-shared-even-deeper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/types/renamed-type-is-shared-even-deeper.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/types/renamed-type-shared-page-info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/types/renamed-type-shared-page-info.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/types/repeated-fragments-with-renamed-types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/types/repeated-fragments-with-renamed-types.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/renames/union-rename-direct-works-as-expected.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/renames/union-rename-direct-works-as-expected.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/result merging/calls-to-multiple-services-are-merged.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/result merging/calls-to-multiple-services-are-merged.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/result merging/correct-selection-set-on-failed-result.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/result merging/correct-selection-set-on-failed-result.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/result merging/not-nullable-top-level-field-has-null-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/result merging/not-nullable-top-level-field-has-null-2.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/result merging/not-nullable-top-level-field-has-null.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/result merging/not-nullable-top-level-field-has-null.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/result merging/not-nullable-top-level-field-is-absent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/result merging/not-nullable-top-level-field-is-absent.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/scalars/custom-json-scalar-as-input-type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/scalars/custom-json-scalar-as-input-type.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/scalars/custom-json-scalar-as-output-type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/scalars/custom-json-scalar-as-output-type.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/scalars/date-time-scalar-as-input-type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/scalars/date-time-scalar-as-input-type.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/scalars/date-time-scalar-as-output-type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/scalars/date-time-scalar-as-output-type.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/scalars/hydrating-json-data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/scalars/hydrating-json-data.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/scalars/hydrating-using-date-time-as-arg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/scalars/hydrating-using-date-time-as-arg.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/scalars/hydrating-using-json-data-as-arg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/scalars/hydrating-using-json-data-as-arg.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/scalars/hydrating-using-long-as-arg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/scalars/hydrating-using-long-as-arg.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/scalars/hydrating-using-url-as-arg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/scalars/hydrating-using-url-as-arg.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/scalars/indexed-hydrating-using-json-data-as-arg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/scalars/indexed-hydrating-using-json-data-as-arg.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/scalars/long-scalar-argument-with-default-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/scalars/long-scalar-argument-with-default-values.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/scalars/long-scalar-as-input-type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/scalars/long-scalar-as-input-type.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/scalars/long-scalar-as-output-type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/scalars/long-scalar-as-output-type.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/scalars/renaming-date-time-typed-field.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/scalars/renaming-date-time-typed-field.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/scalars/renaming-json-typed-field.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/scalars/renaming-json-typed-field.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/scalars/renaming-url-typed-field.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/scalars/renaming-url-typed-field.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/scalars/url-scalar-as-input-type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/scalars/url-scalar-as-input-type.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/scalars/url-scalar-as-output-type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/scalars/url-scalar-as-output-type.yml -------------------------------------------------------------------------------- /test/src/test/resources/fixtures/schema/can-delete-fields-and-types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlassian-labs/nadel/HEAD/test/src/test/resources/fixtures/schema/can-delete-fields-and-types.yml --------------------------------------------------------------------------------