├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── UPGRADE.md ├── composer.json └── src ├── Annotation ├── Access.php ├── Annotation.php ├── Arg.php ├── ArgsBuilder.php ├── Builder.php ├── Deprecated.php ├── Description.php ├── Enum.php ├── EnumValue.php ├── Field.php ├── FieldBuilder.php ├── FieldsBuilder.php ├── Input.php ├── InputField.php ├── IsPublic.php ├── Mutation.php ├── Provider.php ├── Query.php ├── Relay │ ├── Connection.php │ └── Edge.php ├── Scalar.php ├── Type.php ├── TypeInterface.php └── Union.php ├── CacheWarmer └── CompileCacheWarmer.php ├── Command ├── CompileCommand.php ├── DebugCommand.php ├── GraphQLDumpSchemaCommand.php └── ValidateCommand.php ├── Config ├── CustomScalarTypeDefinition.php ├── EnumTypeDefinition.php ├── InputObjectTypeDefinition.php ├── InterfaceTypeDefinition.php ├── ObjectTypeDefinition.php ├── Parser │ ├── AnnotationParser.php │ ├── AttributeParser.php │ ├── GraphQL │ │ └── ASTConverter │ │ │ ├── CustomScalarNode.php │ │ │ ├── DescriptionNode.php │ │ │ ├── DirectiveNode.php │ │ │ ├── EnumNode.php │ │ │ ├── FieldsNode.php │ │ │ ├── InputObjectNode.php │ │ │ ├── InterfaceNode.php │ │ │ ├── NodeInterface.php │ │ │ ├── ObjectNode.php │ │ │ ├── TypeNode.php │ │ │ └── UnionNode.php │ ├── GraphQLParser.php │ ├── MetadataParser │ │ ├── ClassesTypesMap.php │ │ ├── MetadataParser.php │ │ └── TypeGuesser │ │ │ ├── DocBlockTypeGuesser.php │ │ │ ├── DoctrineTypeGuesser.php │ │ │ ├── PhpTypeGuesser.php │ │ │ ├── TypeGuesser.php │ │ │ ├── TypeGuesserInterface.php │ │ │ ├── TypeGuessingException.php │ │ │ └── TypeHintTypeGuesser.php │ ├── ParserInterface.php │ ├── PreParserInterface.php │ └── YamlParser.php ├── Processor.php ├── Processor │ ├── BuilderProcessor.php │ ├── InheritanceProcessor.php │ ├── NamedConfigProcessor.php │ ├── ProcessorInterface.php │ └── RelayProcessor.php ├── TypeDefinition.php ├── TypeWithOutputFieldsDefinition.php └── UnionTypeDefinition.php ├── Controller ├── GraphController.php └── ProfilerController.php ├── DataCollector └── GraphQLCollector.php ├── Definition ├── Argument.php ├── ArgumentFactory.php ├── ArgumentInterface.php ├── Builder │ ├── MappingInterface.php │ ├── SchemaBuilder.php │ └── TypeFactory.php ├── ConfigProcessor.php ├── ConfigProcessor │ ├── AclConfigProcessor.php │ ├── ConfigProcessorInterface.php │ ├── PublicFieldsFilterConfigProcessor.php │ └── WrapArgumentConfigProcessor.php ├── GraphQLServices.php ├── Resolver │ ├── AliasedInterface.php │ ├── MutationInterface.php │ └── QueryInterface.php ├── ResolverArgs.php └── Type │ ├── CustomScalarType.php │ ├── ExtensibleSchema.php │ ├── GeneratedTypeInterface.php │ ├── PhpEnumType.php │ └── SchemaExtension │ ├── SchemaExtensionInterface.php │ └── ValidatorExtension.php ├── DependencyInjection ├── Compiler │ ├── AliasedPass.php │ ├── ConfigParserPass.php │ ├── ExpressionFunctionPass.php │ ├── GraphQLServicesPass.php │ ├── MutationTaggedServiceMappingTaggedPass.php │ ├── QueryTaggedServiceMappingPass.php │ ├── ResolverMapTaggedServiceMappingPass.php │ ├── ResolverMethodAliasesPass.php │ ├── TaggedServiceMappingPass.php │ ├── TypeGeneratorPass.php │ └── TypeTaggedServiceMappingPass.php ├── Configuration.php ├── OverblogGraphQLExtension.php └── TypesConfiguration.php ├── Error ├── ErrorHandler.php ├── ExceptionConverter.php ├── ExceptionConverterInterface.php ├── InvalidArgumentError.php ├── InvalidArgumentsError.php ├── ResolveErrors.php ├── UserError.php ├── UserErrors.php └── UserWarning.php ├── Event ├── ErrorFormattingEvent.php ├── Events.php ├── ExecutorArgumentsEvent.php ├── ExecutorContextEvent.php ├── ExecutorResultEvent.php ├── SchemaCompiledEvent.php └── TypeLoadedEvent.php ├── EventListener ├── ClassLoaderListener.php ├── DebugListener.php ├── ErrorHandlerListener.php ├── ErrorLoggerListener.php ├── RequestListener.php ├── TypeDecoratorListener.php └── ValidationErrorsListener.php ├── Executor ├── Executor.php ├── ExecutorInterface.php └── Promise │ ├── Adapter │ └── ReactPromiseAdapter.php │ └── PromiseAdapterInterface.php ├── ExpressionLanguage ├── Exception │ └── EvaluatorIsNotAllowedException.php ├── ExpressionFunction.php ├── ExpressionFunction │ ├── Call.php │ ├── DependencyInjection │ │ ├── Parameter.php │ │ └── Service.php │ ├── GraphQL │ │ ├── Arguments.php │ │ ├── IsTypeOf.php │ │ ├── Mutation.php │ │ ├── Query.php │ │ └── Relay │ │ │ ├── FromGlobalID.php │ │ │ ├── GlobalID.php │ │ │ ├── IdFetcherCallback.php │ │ │ ├── MutateAndGetPayloadCallback.php │ │ │ └── ResolveSingleInputCallback.php │ ├── NewObject.php │ └── Security │ │ ├── GetUser.php │ │ ├── HasAnyPermission.php │ │ ├── HasAnyRole.php │ │ ├── HasPermission.php │ │ ├── HasRole.php │ │ ├── IsAnonymous.php │ │ ├── IsAuthenticated.php │ │ ├── IsFullyAuthenticated.php │ │ ├── IsGranted.php │ │ └── IsRememberMe.php └── ExpressionLanguage.php ├── Generator ├── Collection.php ├── Converter │ └── ExpressionConverter.php ├── Exception │ └── GeneratorException.php ├── TypeBuilder.php ├── TypeGenerator.php └── TypeGeneratorOptions.php ├── GraphQL └── Relay │ ├── Mutation │ └── MutationFieldQuery.php │ └── Node │ ├── GlobalIdFieldQuery.php │ ├── NodeFieldQuery.php │ └── PluralIdentifyingRootFieldQuery.php ├── OverblogGraphQLBundle.php ├── Relay ├── Builder │ ├── RelayConnectionFieldsBuilder.php │ └── RelayEdgeFieldsBuilder.php ├── Connection │ ├── BackwardConnectionArgsDefinition.php │ ├── ConnectionArgsDefinition.php │ ├── ConnectionBuilder.php │ ├── ConnectionDefinition.php │ ├── ConnectionInterface.php │ ├── Cursor │ │ ├── Base64CursorEncoder.php │ │ ├── Base64UrlSafeCursorEncoder.php │ │ ├── CursorEncoderInterface.php │ │ └── PlainCursorEncoder.php │ ├── EdgeInterface.php │ ├── ForwardConnectionArgsDefinition.php │ ├── Output │ │ ├── Connection.php │ │ ├── DeprecatedPropertyPublicAccessTrait.php │ │ ├── Edge.php │ │ └── PageInfo.php │ ├── PageInfoInterface.php │ └── Paginator.php ├── Mutation │ ├── InputDefinition.php │ ├── MutationFieldDefinition.php │ └── PayloadDefinition.php └── Node │ ├── GlobalId.php │ ├── GlobalIdFieldDefinition.php │ ├── NodeDefinition.php │ ├── NodeFieldDefinition.php │ └── PluralIdentifyingRootFieldDefinition.php ├── Request ├── BatchParser.php ├── Executor.php ├── Parser.php ├── ParserInterface.php └── UploadParserTrait.php ├── Resolver ├── AbstractProxyResolver.php ├── AbstractResolver.php ├── AccessResolver.php ├── FieldResolver.php ├── FluentResolverInterface.php ├── InterfaceTypeResolver.php ├── MutationResolver.php ├── QueryResolver.php ├── ResolverMap.php ├── ResolverMapInterface.php ├── ResolverMaps.php ├── TypeResolver.php ├── UnresolvableException.php └── UnsupportedResolverException.php ├── Resources ├── config │ ├── aliases.yaml │ ├── commands.yaml │ ├── definition_config_processors.yaml │ ├── expression_language_functions.yaml │ ├── graphql │ │ └── relay │ │ │ └── connection │ │ │ └── PageInfo.types.yaml │ ├── graphql_resolvers.yaml │ ├── graphql_types.yaml │ ├── listeners.yaml │ ├── profiler.yaml │ ├── routing │ │ ├── graphql.yml │ │ ├── multiple.yaml │ │ └── single.yaml │ └── services.yaml └── views │ └── profiler │ ├── graphql.html.twig │ └── panel.html.twig ├── Security └── Security.php ├── Transformer └── ArgumentsTransformer.php ├── Upload └── Type │ └── GraphQLUploadType.php ├── Util └── Base64Encoder.php └── Validator ├── Constraints └── ExpressionValidator.php ├── Exception └── ArgumentsValidationException.php ├── Formatter.php ├── InputValidator.php ├── InputValidatorFactory.php ├── Mapping ├── MetadataFactory.php ├── ObjectMetadata.php └── PropertyMetadata.php └── ValidationNode.php /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/UPGRADE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/composer.json -------------------------------------------------------------------------------- /src/Annotation/Access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/Access.php -------------------------------------------------------------------------------- /src/Annotation/Annotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/Annotation.php -------------------------------------------------------------------------------- /src/Annotation/Arg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/Arg.php -------------------------------------------------------------------------------- /src/Annotation/ArgsBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/ArgsBuilder.php -------------------------------------------------------------------------------- /src/Annotation/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/Builder.php -------------------------------------------------------------------------------- /src/Annotation/Deprecated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/Deprecated.php -------------------------------------------------------------------------------- /src/Annotation/Description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/Description.php -------------------------------------------------------------------------------- /src/Annotation/Enum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/Enum.php -------------------------------------------------------------------------------- /src/Annotation/EnumValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/EnumValue.php -------------------------------------------------------------------------------- /src/Annotation/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/Field.php -------------------------------------------------------------------------------- /src/Annotation/FieldBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/FieldBuilder.php -------------------------------------------------------------------------------- /src/Annotation/FieldsBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/FieldsBuilder.php -------------------------------------------------------------------------------- /src/Annotation/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/Input.php -------------------------------------------------------------------------------- /src/Annotation/InputField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/InputField.php -------------------------------------------------------------------------------- /src/Annotation/IsPublic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/IsPublic.php -------------------------------------------------------------------------------- /src/Annotation/Mutation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/Mutation.php -------------------------------------------------------------------------------- /src/Annotation/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/Provider.php -------------------------------------------------------------------------------- /src/Annotation/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/Query.php -------------------------------------------------------------------------------- /src/Annotation/Relay/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/Relay/Connection.php -------------------------------------------------------------------------------- /src/Annotation/Relay/Edge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/Relay/Edge.php -------------------------------------------------------------------------------- /src/Annotation/Scalar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/Scalar.php -------------------------------------------------------------------------------- /src/Annotation/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/Type.php -------------------------------------------------------------------------------- /src/Annotation/TypeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/TypeInterface.php -------------------------------------------------------------------------------- /src/Annotation/Union.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Annotation/Union.php -------------------------------------------------------------------------------- /src/CacheWarmer/CompileCacheWarmer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/CacheWarmer/CompileCacheWarmer.php -------------------------------------------------------------------------------- /src/Command/CompileCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Command/CompileCommand.php -------------------------------------------------------------------------------- /src/Command/DebugCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Command/DebugCommand.php -------------------------------------------------------------------------------- /src/Command/GraphQLDumpSchemaCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Command/GraphQLDumpSchemaCommand.php -------------------------------------------------------------------------------- /src/Command/ValidateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Command/ValidateCommand.php -------------------------------------------------------------------------------- /src/Config/CustomScalarTypeDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/CustomScalarTypeDefinition.php -------------------------------------------------------------------------------- /src/Config/EnumTypeDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/EnumTypeDefinition.php -------------------------------------------------------------------------------- /src/Config/InputObjectTypeDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/InputObjectTypeDefinition.php -------------------------------------------------------------------------------- /src/Config/InterfaceTypeDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/InterfaceTypeDefinition.php -------------------------------------------------------------------------------- /src/Config/ObjectTypeDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/ObjectTypeDefinition.php -------------------------------------------------------------------------------- /src/Config/Parser/AnnotationParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/AnnotationParser.php -------------------------------------------------------------------------------- /src/Config/Parser/AttributeParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/AttributeParser.php -------------------------------------------------------------------------------- /src/Config/Parser/GraphQL/ASTConverter/CustomScalarNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/GraphQL/ASTConverter/CustomScalarNode.php -------------------------------------------------------------------------------- /src/Config/Parser/GraphQL/ASTConverter/DescriptionNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/GraphQL/ASTConverter/DescriptionNode.php -------------------------------------------------------------------------------- /src/Config/Parser/GraphQL/ASTConverter/DirectiveNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/GraphQL/ASTConverter/DirectiveNode.php -------------------------------------------------------------------------------- /src/Config/Parser/GraphQL/ASTConverter/EnumNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/GraphQL/ASTConverter/EnumNode.php -------------------------------------------------------------------------------- /src/Config/Parser/GraphQL/ASTConverter/FieldsNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/GraphQL/ASTConverter/FieldsNode.php -------------------------------------------------------------------------------- /src/Config/Parser/GraphQL/ASTConverter/InputObjectNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/GraphQL/ASTConverter/InputObjectNode.php -------------------------------------------------------------------------------- /src/Config/Parser/GraphQL/ASTConverter/InterfaceNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/GraphQL/ASTConverter/InterfaceNode.php -------------------------------------------------------------------------------- /src/Config/Parser/GraphQL/ASTConverter/NodeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/GraphQL/ASTConverter/NodeInterface.php -------------------------------------------------------------------------------- /src/Config/Parser/GraphQL/ASTConverter/ObjectNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/GraphQL/ASTConverter/ObjectNode.php -------------------------------------------------------------------------------- /src/Config/Parser/GraphQL/ASTConverter/TypeNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/GraphQL/ASTConverter/TypeNode.php -------------------------------------------------------------------------------- /src/Config/Parser/GraphQL/ASTConverter/UnionNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/GraphQL/ASTConverter/UnionNode.php -------------------------------------------------------------------------------- /src/Config/Parser/GraphQLParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/GraphQLParser.php -------------------------------------------------------------------------------- /src/Config/Parser/MetadataParser/ClassesTypesMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/MetadataParser/ClassesTypesMap.php -------------------------------------------------------------------------------- /src/Config/Parser/MetadataParser/MetadataParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/MetadataParser/MetadataParser.php -------------------------------------------------------------------------------- /src/Config/Parser/MetadataParser/TypeGuesser/DocBlockTypeGuesser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/MetadataParser/TypeGuesser/DocBlockTypeGuesser.php -------------------------------------------------------------------------------- /src/Config/Parser/MetadataParser/TypeGuesser/DoctrineTypeGuesser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/MetadataParser/TypeGuesser/DoctrineTypeGuesser.php -------------------------------------------------------------------------------- /src/Config/Parser/MetadataParser/TypeGuesser/PhpTypeGuesser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/MetadataParser/TypeGuesser/PhpTypeGuesser.php -------------------------------------------------------------------------------- /src/Config/Parser/MetadataParser/TypeGuesser/TypeGuesser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/MetadataParser/TypeGuesser/TypeGuesser.php -------------------------------------------------------------------------------- /src/Config/Parser/MetadataParser/TypeGuesser/TypeGuesserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/MetadataParser/TypeGuesser/TypeGuesserInterface.php -------------------------------------------------------------------------------- /src/Config/Parser/MetadataParser/TypeGuesser/TypeGuessingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/MetadataParser/TypeGuesser/TypeGuessingException.php -------------------------------------------------------------------------------- /src/Config/Parser/MetadataParser/TypeGuesser/TypeHintTypeGuesser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/MetadataParser/TypeGuesser/TypeHintTypeGuesser.php -------------------------------------------------------------------------------- /src/Config/Parser/ParserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/ParserInterface.php -------------------------------------------------------------------------------- /src/Config/Parser/PreParserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/PreParserInterface.php -------------------------------------------------------------------------------- /src/Config/Parser/YamlParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Parser/YamlParser.php -------------------------------------------------------------------------------- /src/Config/Processor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Processor.php -------------------------------------------------------------------------------- /src/Config/Processor/BuilderProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Processor/BuilderProcessor.php -------------------------------------------------------------------------------- /src/Config/Processor/InheritanceProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Processor/InheritanceProcessor.php -------------------------------------------------------------------------------- /src/Config/Processor/NamedConfigProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Processor/NamedConfigProcessor.php -------------------------------------------------------------------------------- /src/Config/Processor/ProcessorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Processor/ProcessorInterface.php -------------------------------------------------------------------------------- /src/Config/Processor/RelayProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/Processor/RelayProcessor.php -------------------------------------------------------------------------------- /src/Config/TypeDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/TypeDefinition.php -------------------------------------------------------------------------------- /src/Config/TypeWithOutputFieldsDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/TypeWithOutputFieldsDefinition.php -------------------------------------------------------------------------------- /src/Config/UnionTypeDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Config/UnionTypeDefinition.php -------------------------------------------------------------------------------- /src/Controller/GraphController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Controller/GraphController.php -------------------------------------------------------------------------------- /src/Controller/ProfilerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Controller/ProfilerController.php -------------------------------------------------------------------------------- /src/DataCollector/GraphQLCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/DataCollector/GraphQLCollector.php -------------------------------------------------------------------------------- /src/Definition/Argument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/Argument.php -------------------------------------------------------------------------------- /src/Definition/ArgumentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/ArgumentFactory.php -------------------------------------------------------------------------------- /src/Definition/ArgumentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/ArgumentInterface.php -------------------------------------------------------------------------------- /src/Definition/Builder/MappingInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/Builder/MappingInterface.php -------------------------------------------------------------------------------- /src/Definition/Builder/SchemaBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/Builder/SchemaBuilder.php -------------------------------------------------------------------------------- /src/Definition/Builder/TypeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/Builder/TypeFactory.php -------------------------------------------------------------------------------- /src/Definition/ConfigProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/ConfigProcessor.php -------------------------------------------------------------------------------- /src/Definition/ConfigProcessor/AclConfigProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/ConfigProcessor/AclConfigProcessor.php -------------------------------------------------------------------------------- /src/Definition/ConfigProcessor/ConfigProcessorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/ConfigProcessor/ConfigProcessorInterface.php -------------------------------------------------------------------------------- /src/Definition/ConfigProcessor/PublicFieldsFilterConfigProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/ConfigProcessor/PublicFieldsFilterConfigProcessor.php -------------------------------------------------------------------------------- /src/Definition/ConfigProcessor/WrapArgumentConfigProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/ConfigProcessor/WrapArgumentConfigProcessor.php -------------------------------------------------------------------------------- /src/Definition/GraphQLServices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/GraphQLServices.php -------------------------------------------------------------------------------- /src/Definition/Resolver/AliasedInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/Resolver/AliasedInterface.php -------------------------------------------------------------------------------- /src/Definition/Resolver/MutationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/Resolver/MutationInterface.php -------------------------------------------------------------------------------- /src/Definition/Resolver/QueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/Resolver/QueryInterface.php -------------------------------------------------------------------------------- /src/Definition/ResolverArgs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/ResolverArgs.php -------------------------------------------------------------------------------- /src/Definition/Type/CustomScalarType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/Type/CustomScalarType.php -------------------------------------------------------------------------------- /src/Definition/Type/ExtensibleSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/Type/ExtensibleSchema.php -------------------------------------------------------------------------------- /src/Definition/Type/GeneratedTypeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/Type/GeneratedTypeInterface.php -------------------------------------------------------------------------------- /src/Definition/Type/PhpEnumType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/Type/PhpEnumType.php -------------------------------------------------------------------------------- /src/Definition/Type/SchemaExtension/SchemaExtensionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/Type/SchemaExtension/SchemaExtensionInterface.php -------------------------------------------------------------------------------- /src/Definition/Type/SchemaExtension/ValidatorExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Definition/Type/SchemaExtension/ValidatorExtension.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/AliasedPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/DependencyInjection/Compiler/AliasedPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/ConfigParserPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/DependencyInjection/Compiler/ConfigParserPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/ExpressionFunctionPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/DependencyInjection/Compiler/ExpressionFunctionPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/GraphQLServicesPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/DependencyInjection/Compiler/GraphQLServicesPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/MutationTaggedServiceMappingTaggedPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/DependencyInjection/Compiler/MutationTaggedServiceMappingTaggedPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/QueryTaggedServiceMappingPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/DependencyInjection/Compiler/QueryTaggedServiceMappingPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/ResolverMapTaggedServiceMappingPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/DependencyInjection/Compiler/ResolverMapTaggedServiceMappingPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/ResolverMethodAliasesPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/DependencyInjection/Compiler/ResolverMethodAliasesPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/TaggedServiceMappingPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/DependencyInjection/Compiler/TaggedServiceMappingPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/TypeGeneratorPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/DependencyInjection/Compiler/TypeGeneratorPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/TypeTaggedServiceMappingPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/DependencyInjection/Compiler/TypeTaggedServiceMappingPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/OverblogGraphQLExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/DependencyInjection/OverblogGraphQLExtension.php -------------------------------------------------------------------------------- /src/DependencyInjection/TypesConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/DependencyInjection/TypesConfiguration.php -------------------------------------------------------------------------------- /src/Error/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Error/ErrorHandler.php -------------------------------------------------------------------------------- /src/Error/ExceptionConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Error/ExceptionConverter.php -------------------------------------------------------------------------------- /src/Error/ExceptionConverterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Error/ExceptionConverterInterface.php -------------------------------------------------------------------------------- /src/Error/InvalidArgumentError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Error/InvalidArgumentError.php -------------------------------------------------------------------------------- /src/Error/InvalidArgumentsError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Error/InvalidArgumentsError.php -------------------------------------------------------------------------------- /src/Error/ResolveErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Error/ResolveErrors.php -------------------------------------------------------------------------------- /src/Error/UserError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Error/UserError.php -------------------------------------------------------------------------------- /src/Error/UserErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Error/UserErrors.php -------------------------------------------------------------------------------- /src/Error/UserWarning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Error/UserWarning.php -------------------------------------------------------------------------------- /src/Event/ErrorFormattingEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Event/ErrorFormattingEvent.php -------------------------------------------------------------------------------- /src/Event/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Event/Events.php -------------------------------------------------------------------------------- /src/Event/ExecutorArgumentsEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Event/ExecutorArgumentsEvent.php -------------------------------------------------------------------------------- /src/Event/ExecutorContextEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Event/ExecutorContextEvent.php -------------------------------------------------------------------------------- /src/Event/ExecutorResultEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Event/ExecutorResultEvent.php -------------------------------------------------------------------------------- /src/Event/SchemaCompiledEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Event/SchemaCompiledEvent.php -------------------------------------------------------------------------------- /src/Event/TypeLoadedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Event/TypeLoadedEvent.php -------------------------------------------------------------------------------- /src/EventListener/ClassLoaderListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/EventListener/ClassLoaderListener.php -------------------------------------------------------------------------------- /src/EventListener/DebugListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/EventListener/DebugListener.php -------------------------------------------------------------------------------- /src/EventListener/ErrorHandlerListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/EventListener/ErrorHandlerListener.php -------------------------------------------------------------------------------- /src/EventListener/ErrorLoggerListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/EventListener/ErrorLoggerListener.php -------------------------------------------------------------------------------- /src/EventListener/RequestListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/EventListener/RequestListener.php -------------------------------------------------------------------------------- /src/EventListener/TypeDecoratorListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/EventListener/TypeDecoratorListener.php -------------------------------------------------------------------------------- /src/EventListener/ValidationErrorsListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/EventListener/ValidationErrorsListener.php -------------------------------------------------------------------------------- /src/Executor/Executor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Executor/Executor.php -------------------------------------------------------------------------------- /src/Executor/ExecutorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Executor/ExecutorInterface.php -------------------------------------------------------------------------------- /src/Executor/Promise/Adapter/ReactPromiseAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Executor/Promise/Adapter/ReactPromiseAdapter.php -------------------------------------------------------------------------------- /src/Executor/Promise/PromiseAdapterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Executor/Promise/PromiseAdapterInterface.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/Exception/EvaluatorIsNotAllowedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/Exception/EvaluatorIsNotAllowedException.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/Call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/Call.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/DependencyInjection/Parameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/DependencyInjection/Parameter.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/DependencyInjection/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/DependencyInjection/Service.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/GraphQL/Arguments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/GraphQL/Arguments.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/GraphQL/IsTypeOf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/GraphQL/IsTypeOf.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/GraphQL/Mutation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/GraphQL/Mutation.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/GraphQL/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/GraphQL/Query.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/GraphQL/Relay/FromGlobalID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/GraphQL/Relay/FromGlobalID.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/GraphQL/Relay/GlobalID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/GraphQL/Relay/GlobalID.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/GraphQL/Relay/IdFetcherCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/GraphQL/Relay/IdFetcherCallback.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/GraphQL/Relay/MutateAndGetPayloadCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/GraphQL/Relay/MutateAndGetPayloadCallback.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/GraphQL/Relay/ResolveSingleInputCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/GraphQL/Relay/ResolveSingleInputCallback.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/NewObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/NewObject.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/Security/GetUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/Security/GetUser.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/Security/HasAnyPermission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/Security/HasAnyPermission.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/Security/HasAnyRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/Security/HasAnyRole.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/Security/HasPermission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/Security/HasPermission.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/Security/HasRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/Security/HasRole.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/Security/IsAnonymous.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/Security/IsAnonymous.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/Security/IsAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/Security/IsAuthenticated.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/Security/IsFullyAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/Security/IsFullyAuthenticated.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/Security/IsGranted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/Security/IsGranted.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionFunction/Security/IsRememberMe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionFunction/Security/IsRememberMe.php -------------------------------------------------------------------------------- /src/ExpressionLanguage/ExpressionLanguage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/ExpressionLanguage/ExpressionLanguage.php -------------------------------------------------------------------------------- /src/Generator/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Generator/Collection.php -------------------------------------------------------------------------------- /src/Generator/Converter/ExpressionConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Generator/Converter/ExpressionConverter.php -------------------------------------------------------------------------------- /src/Generator/Exception/GeneratorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Generator/Exception/GeneratorException.php -------------------------------------------------------------------------------- /src/Generator/TypeBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Generator/TypeBuilder.php -------------------------------------------------------------------------------- /src/Generator/TypeGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Generator/TypeGenerator.php -------------------------------------------------------------------------------- /src/Generator/TypeGeneratorOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Generator/TypeGeneratorOptions.php -------------------------------------------------------------------------------- /src/GraphQL/Relay/Mutation/MutationFieldQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/GraphQL/Relay/Mutation/MutationFieldQuery.php -------------------------------------------------------------------------------- /src/GraphQL/Relay/Node/GlobalIdFieldQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/GraphQL/Relay/Node/GlobalIdFieldQuery.php -------------------------------------------------------------------------------- /src/GraphQL/Relay/Node/NodeFieldQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/GraphQL/Relay/Node/NodeFieldQuery.php -------------------------------------------------------------------------------- /src/GraphQL/Relay/Node/PluralIdentifyingRootFieldQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/GraphQL/Relay/Node/PluralIdentifyingRootFieldQuery.php -------------------------------------------------------------------------------- /src/OverblogGraphQLBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/OverblogGraphQLBundle.php -------------------------------------------------------------------------------- /src/Relay/Builder/RelayConnectionFieldsBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Builder/RelayConnectionFieldsBuilder.php -------------------------------------------------------------------------------- /src/Relay/Builder/RelayEdgeFieldsBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Builder/RelayEdgeFieldsBuilder.php -------------------------------------------------------------------------------- /src/Relay/Connection/BackwardConnectionArgsDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Connection/BackwardConnectionArgsDefinition.php -------------------------------------------------------------------------------- /src/Relay/Connection/ConnectionArgsDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Connection/ConnectionArgsDefinition.php -------------------------------------------------------------------------------- /src/Relay/Connection/ConnectionBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Connection/ConnectionBuilder.php -------------------------------------------------------------------------------- /src/Relay/Connection/ConnectionDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Connection/ConnectionDefinition.php -------------------------------------------------------------------------------- /src/Relay/Connection/ConnectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Connection/ConnectionInterface.php -------------------------------------------------------------------------------- /src/Relay/Connection/Cursor/Base64CursorEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Connection/Cursor/Base64CursorEncoder.php -------------------------------------------------------------------------------- /src/Relay/Connection/Cursor/Base64UrlSafeCursorEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Connection/Cursor/Base64UrlSafeCursorEncoder.php -------------------------------------------------------------------------------- /src/Relay/Connection/Cursor/CursorEncoderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Connection/Cursor/CursorEncoderInterface.php -------------------------------------------------------------------------------- /src/Relay/Connection/Cursor/PlainCursorEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Connection/Cursor/PlainCursorEncoder.php -------------------------------------------------------------------------------- /src/Relay/Connection/EdgeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Connection/EdgeInterface.php -------------------------------------------------------------------------------- /src/Relay/Connection/ForwardConnectionArgsDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Connection/ForwardConnectionArgsDefinition.php -------------------------------------------------------------------------------- /src/Relay/Connection/Output/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Connection/Output/Connection.php -------------------------------------------------------------------------------- /src/Relay/Connection/Output/DeprecatedPropertyPublicAccessTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Connection/Output/DeprecatedPropertyPublicAccessTrait.php -------------------------------------------------------------------------------- /src/Relay/Connection/Output/Edge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Connection/Output/Edge.php -------------------------------------------------------------------------------- /src/Relay/Connection/Output/PageInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Connection/Output/PageInfo.php -------------------------------------------------------------------------------- /src/Relay/Connection/PageInfoInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Connection/PageInfoInterface.php -------------------------------------------------------------------------------- /src/Relay/Connection/Paginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Connection/Paginator.php -------------------------------------------------------------------------------- /src/Relay/Mutation/InputDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Mutation/InputDefinition.php -------------------------------------------------------------------------------- /src/Relay/Mutation/MutationFieldDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Mutation/MutationFieldDefinition.php -------------------------------------------------------------------------------- /src/Relay/Mutation/PayloadDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Mutation/PayloadDefinition.php -------------------------------------------------------------------------------- /src/Relay/Node/GlobalId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Node/GlobalId.php -------------------------------------------------------------------------------- /src/Relay/Node/GlobalIdFieldDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Node/GlobalIdFieldDefinition.php -------------------------------------------------------------------------------- /src/Relay/Node/NodeDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Node/NodeDefinition.php -------------------------------------------------------------------------------- /src/Relay/Node/NodeFieldDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Node/NodeFieldDefinition.php -------------------------------------------------------------------------------- /src/Relay/Node/PluralIdentifyingRootFieldDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Relay/Node/PluralIdentifyingRootFieldDefinition.php -------------------------------------------------------------------------------- /src/Request/BatchParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Request/BatchParser.php -------------------------------------------------------------------------------- /src/Request/Executor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Request/Executor.php -------------------------------------------------------------------------------- /src/Request/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Request/Parser.php -------------------------------------------------------------------------------- /src/Request/ParserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Request/ParserInterface.php -------------------------------------------------------------------------------- /src/Request/UploadParserTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Request/UploadParserTrait.php -------------------------------------------------------------------------------- /src/Resolver/AbstractProxyResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resolver/AbstractProxyResolver.php -------------------------------------------------------------------------------- /src/Resolver/AbstractResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resolver/AbstractResolver.php -------------------------------------------------------------------------------- /src/Resolver/AccessResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resolver/AccessResolver.php -------------------------------------------------------------------------------- /src/Resolver/FieldResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resolver/FieldResolver.php -------------------------------------------------------------------------------- /src/Resolver/FluentResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resolver/FluentResolverInterface.php -------------------------------------------------------------------------------- /src/Resolver/InterfaceTypeResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resolver/InterfaceTypeResolver.php -------------------------------------------------------------------------------- /src/Resolver/MutationResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resolver/MutationResolver.php -------------------------------------------------------------------------------- /src/Resolver/QueryResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resolver/QueryResolver.php -------------------------------------------------------------------------------- /src/Resolver/ResolverMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resolver/ResolverMap.php -------------------------------------------------------------------------------- /src/Resolver/ResolverMapInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resolver/ResolverMapInterface.php -------------------------------------------------------------------------------- /src/Resolver/ResolverMaps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resolver/ResolverMaps.php -------------------------------------------------------------------------------- /src/Resolver/TypeResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resolver/TypeResolver.php -------------------------------------------------------------------------------- /src/Resolver/UnresolvableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resolver/UnresolvableException.php -------------------------------------------------------------------------------- /src/Resolver/UnsupportedResolverException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resolver/UnsupportedResolverException.php -------------------------------------------------------------------------------- /src/Resources/config/aliases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resources/config/aliases.yaml -------------------------------------------------------------------------------- /src/Resources/config/commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resources/config/commands.yaml -------------------------------------------------------------------------------- /src/Resources/config/definition_config_processors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resources/config/definition_config_processors.yaml -------------------------------------------------------------------------------- /src/Resources/config/expression_language_functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resources/config/expression_language_functions.yaml -------------------------------------------------------------------------------- /src/Resources/config/graphql/relay/connection/PageInfo.types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resources/config/graphql/relay/connection/PageInfo.types.yaml -------------------------------------------------------------------------------- /src/Resources/config/graphql_resolvers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resources/config/graphql_resolvers.yaml -------------------------------------------------------------------------------- /src/Resources/config/graphql_types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resources/config/graphql_types.yaml -------------------------------------------------------------------------------- /src/Resources/config/listeners.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resources/config/listeners.yaml -------------------------------------------------------------------------------- /src/Resources/config/profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resources/config/profiler.yaml -------------------------------------------------------------------------------- /src/Resources/config/routing/graphql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resources/config/routing/graphql.yml -------------------------------------------------------------------------------- /src/Resources/config/routing/multiple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resources/config/routing/multiple.yaml -------------------------------------------------------------------------------- /src/Resources/config/routing/single.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resources/config/routing/single.yaml -------------------------------------------------------------------------------- /src/Resources/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resources/config/services.yaml -------------------------------------------------------------------------------- /src/Resources/views/profiler/graphql.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resources/views/profiler/graphql.html.twig -------------------------------------------------------------------------------- /src/Resources/views/profiler/panel.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Resources/views/profiler/panel.html.twig -------------------------------------------------------------------------------- /src/Security/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Security/Security.php -------------------------------------------------------------------------------- /src/Transformer/ArgumentsTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Transformer/ArgumentsTransformer.php -------------------------------------------------------------------------------- /src/Upload/Type/GraphQLUploadType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Upload/Type/GraphQLUploadType.php -------------------------------------------------------------------------------- /src/Util/Base64Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Util/Base64Encoder.php -------------------------------------------------------------------------------- /src/Validator/Constraints/ExpressionValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Validator/Constraints/ExpressionValidator.php -------------------------------------------------------------------------------- /src/Validator/Exception/ArgumentsValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Validator/Exception/ArgumentsValidationException.php -------------------------------------------------------------------------------- /src/Validator/Formatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Validator/Formatter.php -------------------------------------------------------------------------------- /src/Validator/InputValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Validator/InputValidator.php -------------------------------------------------------------------------------- /src/Validator/InputValidatorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Validator/InputValidatorFactory.php -------------------------------------------------------------------------------- /src/Validator/Mapping/MetadataFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Validator/Mapping/MetadataFactory.php -------------------------------------------------------------------------------- /src/Validator/Mapping/ObjectMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Validator/Mapping/ObjectMetadata.php -------------------------------------------------------------------------------- /src/Validator/Mapping/PropertyMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Validator/Mapping/PropertyMetadata.php -------------------------------------------------------------------------------- /src/Validator/ValidationNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overblog/GraphQLBundle/HEAD/src/Validator/ValidationNode.php --------------------------------------------------------------------------------