Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Graphql Php Laravel Package

webonyx/graphql-php

PHP implementation of the GraphQL specification, based on graphql-js. Build schemas, types, and execute queries/mutations in your PHP apps. Widely used, well-tested, and documented with examples and class reference.

View on GitHub
Deep Wiki
Context7
v15.31.4

Changed

v15.31.3

Fixed

v15.31.2

Changed

Fixed

v15.31.1

Fixed

v15.31.0

Added

Deprecated

v15.30.2

Fixed

v15.30.1

Changed

v15.30.0

Added

v15.29.4

Fixed

v15.29.3

Changed

v15.29.2

Fixed

v15.29.1

Fixed

v15.29.0

Changed

Deprecated

v15.28.0

Changed

v15.27.2

Fixed

v15.27.1

Fixed

v15.27.0

Added

v15.26.0

Changed

v15.25.2

Fixed

v15.25.1

Changed

v15.25.0

Added

v15.24.0

Added

v15.23.1

Changed

v15.23.0

Added

v15.22.4

Fixed

v15.22.3

Changed

v15.22.2

Fixed

v15.22.1

Fixed

v15.22.0

Added

Changed

v15.21.3

Fixed

v15.21.2

Fixed

v15.21.1

Fixed

v15.21.0

Added

v15.9.1

Fixed

v15.9.0

Added

v15.8.1

Fixed

v15.8.0

Added

Fixed

v15.7.0

Added

v15.6.3

Fixed

v15.6.2

Fixed

v15.6.1

Fixed

v15.6.0

Added

v15.5.3

Fixed

v15.5.2

Fixed

v15.5.1

Fixed

  • Remove useless and broken Parser::document(), use parse()
v15.5.0

Added

  • Add ScopedContext interface to control cloning of the context value
v15.4.0

Added

v15.3.2

Fixed

  • Call static methods in SchemaPrinter with static:: to enable overrides
v15.3.1

Fixed

v15.3.0

Added

v15.20.1

Fixed

v15.20.0

Added

v15.2.5

Fixed

v15.2.4

Fixed

  • Ensure OperationDefinitionNode.variableDefinitions is initialized
v15.2.3

Fixed

  • Annotate [@throws](https://github.com/throws) accurately
v15.2.2

Fixed

  • Improve handling of JSON encoding errors
v15.2.1

Fixed

  • Initialize directives and arguments in Node with empty NodeList
v15.2.0

Changed

  • Improve validation messages for type definitions
v15.19.1

Fixed

v15.19.0

Added

v15.18.1

Fixed

v15.18.0

Added

v15.17.0

Added

v15.16.1

Fixed

v15.16.0

Added

v15.15.0

Added

v15.14.3

Fixed

v15.14.2

Changed

v15.14.1

Changed

v15.14.0

Added

v15.13.0

Added

v15.12.5

Fixed

v15.12.4

Fixed

v15.12.3

Fixed

v15.12.2

Changed

v15.12.1

Fixed

v15.12.0

Added

v15.11.2

Fixed

v15.11.1

Fixed

v15.11.0

Changed

v15.10.0

Changed

v15.1.0

Added

  • Add additional sorting options to SchemaPrinter
v15.0.3

Fixed

  • Fix QueryPlan for union types

Changed

  • Improve QueryPlan performance
v15.0.2

Fixed

  • Fix QueryPlan when querying __typename on a union type
v15.0.1

Fixed

  • Fix printing of single line descriptions with backslashes

Changed

  • Print long argument lists on multiple lines
  • Print space between object value brackets
v15.0.0

Changed

  • PHP version required: 7.4+
  • Propagate error message and stack trace for why leaf value serialization failed
  • Do not throw client safe Error when failing to serialize an Enum type
  • Use native PHP types for properties of Type and its subclasses
  • Throw SerializationError over client safe Error when failing to serialize leaf types
  • Move debug entries in errors under extensions key
  • Use native PHP types wherever possible
  • Always throw RequestError with useful message when clients provide an invalid JSON body
  • Move class BlockString from namespace GraphQL\Utils to GraphQL\Language
  • Return string-keyed arrays from GraphQL::getStandardDirectives(), GraphQL::getStandardTypes() and GraphQL::getStandardValidationRules()
  • Move complexity related code from FieldDefinition to QueryComplexity
  • Exclude unused standard types from the schema
  • Require lazy type loader to return Type directly without an intermediary callable
  • Allow lazy type loader to return null
  • Rename ServerConfig option persistentQueryLoader to persistedQueryLoader
  • Call previously unused methods EnumType::parseValue() and EnumType::parseLiteral()
  • Strongly type PromiseAdapter::createRejected() to require \Throwable
  • Move members specific to NamedType out of Type: $name, $description, $config, isBuiltInType(), assertValid()
  • Always convert recursively when calling Node::toArray()
  • Make Directive::$config['args'] use the same definition style as FieldDefinition::$config['args']
  • Rename FieldArgument to Argument
  • Make errors when parsing scalar literals more precise
  • Change expected QueryPlan options from ['group-implementor-fields'] to ['groupImplementorFields' => true] in ResolveInfo::lookAhead()
  • Always convert promises through PromiseAdapter::convertThenable() before calling ->then() on them
  • Use JSON_THROW_ON_ERROR in json_encode()
  • Validate some internal invariants through assert()
  • PromiseAdapter::all() accepts iterable
  • Throw if Introspection::fromSchema() returns no data
  • Reorganize abstract class ASTValidationContext to interface ValidationContext
  • Reorganize AST interfaces related to schema and type extensions
  • Align Utils::suggestionList() with the reference implementation (https://github.com/webonyx/graphql-php/issues/1075)
  • Order schema topologically and according to the user-defined order, affects introspection and printing
  • GraphQL\Utils\AST::typeFromAST() now needs a type loader callable instead of the Schema
  • Do not change HTTP status code in StandardServer
  • Use " instead of """ for single line descriptions
  • Make Helper::emitResponse() private, use Helper::sendResponse()
  • Emit unescaped UTF-8 from StandardServer
  • Sync input value coercion with graphql-js reference implementation
  • Store rules exclusively by class name in DocumentValidator
  • Reorder standard types as described in the GraphQL specification
  • Improve runtime performance by moving checks for duplicate/mismatching type instances to assert() or schema validation
  • Replace HasSelectionSet::$selectionSet with HasSelectionSet::getSelectionSet()
  • Replace TypeDefinitionNode::$name with TypeDefinitionNode::getName()
  • Replace TypeExtensionNode::$name with TypeExtensionNode::getName()

Added

  • Improve extendability of validator rules
  • Add tests for errors that occur when undeclared fields are passed in input
  • Warn about orphaned object types
  • Expose structured enumeration of directive locations
  • Add AST::concatAST() utility
  • Allow lazy input object fields
  • Add validation rule UniqueEnumValueNames
  • Add SDL validation rule UniqueOperationTypes (https://github.com/webonyx/graphql-php/issues/995)
  • Add ability to remove custom validation rules after adding them via DocumentValidator::removeRule()
  • Allow lazy enum values
  • Make Node implement JsonSerializable
  • Add SDL validation rule UniqueTypeNames (https://github.com/webonyx/graphql-php/issues/998)
  • Add support for SDL validation to KnownTypeNames rule (https://github.com/webonyx/graphql-php/issues/999)
  • Add SDL validation rule UniqueArgumentDefinitionNames (https://github.com/webonyx/graphql-php/issues/1136)
  • Add parseValue config option to InputObjectType to parse input value to custom value object
  • Add option sortTypes to have SchemaPrinter order types alphabetically
  • Allow constructing EnumType from PHP enum
  • Add TypeInfo::getParentTypeStack() and TypeInfo::getFieldDefStack()
  • Include path to faulty input in coercion errors
  • Add ability to resolve abstract type of object via __typename

Optimized

  • Use recursive algorithm for printer and improve its performance
  • Use foreach over slower functions array_map() and Utils::map()

Fixed

  • Avoid QueryPlan crash when multiple $fieldNodes are present
  • Allow instantiating multiple QueryPlan with different options
  • Clarify error when attempting to coerce anything but array or stdClass to an input object
  • Allow directives on variable definitions
  • Handle null parent of list in ValuesOfCorrectType::getVisitor
  • Allow sending both query and queryId, ignore queryId in that case
  • Preserve extended methods from class-based types in SchemaExtender::extend()
  • Fix printing of empty types (https://github.com/webonyx/graphql-php/issues/940)
  • Clone NodeList in Node::cloneDeep()
  • Calling Schema::getType() on a schema built from SDL returns null for unknown types (https://github.com/webonyx/graphql-php/issues/1068)
  • Avoid crash on typeless inline fragment when using QueryComplexity rule
  • Avoid calling FormattedError::addDebugEntries() twice when using default error formatting
  • Avoid calling defined functions named like lazily loaded types
  • Show actual error in debug entries
  • Deal with iterable in implementations of PromiseAdapter::all()

Removed

  • Remove OperationParams method getOriginalInput() in favor of public property $originalInput
  • Remove OperationParams method isReadOnly() in favor of public property $readOnly
  • Remove Utils::withErrorHandling()
  • Remove TypeComparators::doTypesOverlap()
  • Remove DocumentValidator::isError()
  • Remove DocumentValidator::append()
  • Remove Utils::getVariableType() in favor of Utils::printSafe()
  • Remove warning for passing isDeprecated in field definition config
  • Remove WrappingType::getWrappedType() argument $recurse in favor of WrappingType::getInnermostType()
  • Remove Type::assertType()
  • Remove ListOfType::$ofType, ListOfType::getOfType() and NonNull::getOfType()
  • Remove option commentDescriptions from BuildSchema::buildAST(), BuildSchema::build() and Printer::doPrint()
  • Remove parameter $options from ASTDefinitionBuilder
  • Remove FieldDefinition::create() in favor of new FieldDefinition()
  • Remove GraphQL\Exception\InvalidArgument
  • Remove Utils::find(), Utils::every() and Utils::invariant()
  • Remove argument bool $exitWhenDone from StandardServer::send500Error() and StandardServer::handleRequest()
  • Remove Schema::getAstNode() in favor of Schema::$astNode
  • Remove ability to override standard types through Schema option types, use Type::overrideStandardTypes()
  • Remove GraphQL\Utils\TypeInfo::typeFromAST(), use GraphQL\Utils\AST::typeFromAST()
  • Remove StandardServer::send500Error(), handle non-GraphQL errors yourself
  • Remove StandardServer::getHelper(), use new Helper
  • Remove error extension field category, use custom error formatting if you still need it
  • Remove deprecated Type::getInternalTypes()
  • Remove deprecated GraphQL::execute()
  • Remove deprecated GraphQL::executeAndReturnResult()
  • Remove deprecated experimental CoroutineExecutor
  • Remove deprecated FormattedError::create() and FormattedError::createFromPHPError()
  • Remove deprecated GraphQL::setPromiseAdapter()
  • Remove deprecated AST::getOperation()
  • Remove deprecated constants from BreakingChangesFinder
  • Remove deprecated DocumentValidator::isValidLiteralValue()
  • Remove deprecated Error::formatError() and Error::toSerializableArray()
  • Remove deprecated GraphQL::getInternalDirectives()
  • Remove deprecated Schema::isPossibleType()
  • Remove deprecated methods from TypeInfo
  • Remove deprecated Values::valueFromAST() and Values::isValidPHPValue()
  • Remove deprecated public property access to InputObjectField::$type
  • Remove deprecated public property access to FieldDefinition::$type
  • Remove alias GraphQL\Validator\Rules\AbstractQuerySecurity, use GraphQL\Validator\Rules\QuerySecurityRule
  • Remove alias GraphQL\Validator\Rules\AbstractValidationRule, use GraphQL\Validator\Rules\ValidationRule
  • Remove alias GraphQL\Utils\FindBreakingChanges, use GraphQL\Utils\BreakingChangesFinder
v14.9.0

Added

  • Add support for type config decorator in SchemaExtender
v14.8.0

Added

  • Implement GraphQL\Utils\AST::getOperationAST()
v14.7.0

Added

  • Allow providing field definitions as a callable and resolve them lazily
v14.6.4

Fixed

  • Avoid crashing in QueryPlan when __typename is used in the query
v14.6.3

Refactoring:

  • Improve performance of subtype checks
v14.6.2

Fixed

  • Fix overly eager validation of repeatable directive usage
v14.6.1

Fixed

  • Add fallback for directive.isRepeatable in BuildClientSchema
v14.6.0

Added

  • Open ReferenceExecutor for extending

Fixed

  • Ensure properties annotated to hold NodeList are not null
  • Validate that directive argument names do not use reserved or duplicate names
v14.5.1

Fixed

v14.5.0

Added

Deprecates:

  • Constant BreakingChangeFinder::BREAKING_CHANGE_INTERFACE_REMOVED_FROM_OBJECT. Use BreakingChangeFinder::BREAKING_CHANGE_IMPLEMENTED_INTERFACE_REMOVED instead. Constant value also changed from INTERFACE_REMOVED_FROM_OBJECT to IMPLEMENTED_INTERFACE_REMOVED.

  • Constant BreakingChangeFinder::DANGEROUS_CHANGE_INTERFACE_ADDED_TO_OBJECT Use DANGEROUS_CHANGE_IMPLEMENTED_INTERFACE_ADDED instead. Constant value also changed from INTERFACE_ADDED_TO_OBJECT to IMPLEMENTED_INTERFACE_ADDED.

Refactoring:

v14.4.1

Fixed

v14.4.0

Fixed

  • Fixed SchemaPrinter so that it uses late static bindings when extended
  • Parse DirectiveDefinitionNode->locations as NodeList<NamedNode> (fixes AST::fromArray conversion) (https://github.com/webonyx/graphql-php/issues/723)
  • Parse Parser::implementsInterfaces as NodeList<NamedTypeNode> (fixes AST::fromArray conversion)
  • Fix signature of Parser::unionMemberTypes to match actual NodeList<NamedTypeNode>
v14.3.0

Added

Fixed

v14.2.0

Deprecates:

Fixes:

v14.11.9

Fixed

  • Accept AST where field arguments are not given
v14.11.8

Fixed

v14.11.7

Fixed

  • Fix PHP 8.2 deprecation of "static" in callables
v14.11.6

Fixed

  • Fix validation of modified sparse ASTs
v14.11.5

Fixed

v14.11.4

Fixed

  • Fix repeatable directive validation for AST
v14.11.3

Fixed

  • Fix compatibility of more methods with native return type in PHP 8.1
v14.11.2

Fixed

  • Support non-JSON ServerRequestInterface
v14.11.10

Fixed

  • Fix PHP 8.2 deprecated string interpolation syntax
  • Fix PHP 8.2 deprecated dynamic properties
v14.11.1

Fixed

  • Fix compatibility of methods with native return type in PHP 8.1
v14.11.0

Added

  • Allow field definitions to be defined as any iterable, not just array
v14.10.0

Added

  • Make IntType constants MAX_INT and MIN_INT public
v14.1.1

Fixed

v14.1.0

Added

Fixed

Optimized

v14.0.2

Optimized

v14.0.1

Fixed

Optimized

v14.0.0

This release brings several breaking changes. Please refer to UPGRADE document for details.

  • BREAKING/BUGFIX: Strict coercion of scalar types (https://github.com/webonyx/graphql-php/issues/278)
  • BREAKING/BUGFIX: Spec-compliance: Fixed ambiguity with null variable values and default values (https://github.com/webonyx/graphql-php/issues/274)
  • BREAKING: Removed deprecated directive introspection fields (onOperation, onFragment, onField)
  • BREAKING: GraphQL\Deferred now extends GraphQL\Executor\Promise\Adapter\SyncPromise
  • BREAKING: renamed several types of dangerous/breaking changes (returned by BreakingChangesFinder)
  • BREAKING: Renamed GraphQL\Error\Debug to GraphQL\Error\DebugFlag.
  • BREAKING: Debug flags in GraphQL\Executor\ExecutionResult, GraphQL\Error\FormattedError and GraphQL\Server\ServerConfig do not accept boolean value anymore but int only.
  • BREAKING: $positions in GraphQL\Error\Error constructor are not nullable anymore. Same can be expressed by passing an empty array.

Added

Changed

  • Compliant with the GraphQL specification June 2018 Edition
  • Having an empty string in deprecationReason will now print the [@deprecated](https://github.com/deprecated) directive (only a null deprecationReason won't print the [@deprecated](https://github.com/deprecated) directive).

Optimized

Deprecated

Fixed

  • Some bugs
  • Improve accuracy of type hints with PHPStan

Special thanks to @simPod, @spawnia and @shmax for their major contributions!

v0.9.9
v0.9.8
v0.9.7
v0.9.6
  • Bugfix: ResolveInfo::getFieldSelection() now respects inline fragments
v0.9.5
v0.9.4
v0.9.3
v0.9.2
v0.9.14
v0.9.13
v0.9.12
v0.9.11
v0.9.10
v0.9.1
  • Fixed: GraphQL\Server now properly sets promise adapter before executing query
v0.9.0
v0.8.0

This release brings several minor breaking changes. Please refer to UPGRADE document for details.

New features:

  • Support for null value (as required by latest GraphQL spec)
  • Shorthand definitions for field and argument types (see https://github.com/webonyx/graphql-php/issues/47)
  • path entry in errors produced by resolvers for better debugging
  • resolveType for interface/union is now allowed to return string name of type
  • Ability to omit name when extending type class (vs defining inline)

Improvements:

  • Spec compliance improvements
  • New docs and examples
v0.13.9
v0.13.8
v0.13.7
v0.13.6
v0.13.5
v0.13.4
v0.13.3
v0.13.2
v0.13.1
  • Better validation of field/directive arguments
  • Support for apollo client/server persisted queries
  • Minor tweaks and fixes
v0.13.0

This release brings several breaking changes. Please refer to UPGRADE document for details.

New features and notable changes:

v0.12.6
v0.12.5
  • Execution performance optimization for lists
v0.12.4
v0.12.3
v0.12.2
v0.12.1
v0.12.0
  • RFC: Block String (multi-line strings via triple-quote """string""")
  • GraphQL Schema SDL: Descriptions as strings (including multi-line)
  • Changed minimum required PHP version to 5.6

Improvements:

  • Allow extending GraphQL errors with additional properties
  • Fixed parsing of default values in Schema SDL
  • Handling several more cases in findBreakingChanges
  • StandardServer: expect operationName (instead of operation) in input
v0.11.5
  • Allow objects with __toString in IDType
v0.11.4
v0.11.3
v0.11.2
v0.11.1
v0.11.0

This release brings little changes but there are two reasons why it is released as major version:

  1. To follow reference implementation versions (it matches 0.11.x series of graphql-js)
  2. It may break existing applications because scalar input coercion rules are stricter now: In previous versions sloppy client input could leak through with unexpected results. For example string "false" accidentally sent in variables was converted to boolean true and passed to field arguments. In the new version, such input will produce an error (which is a spec-compliant behavior).

Improvements:

  • Stricter input coercion (see https://github.com/webonyx/graphql-php/issues/171)
  • Types built with BuildSchema now have reference to AST node with corresponding AST definition (in $astNode property)
  • Account for query offset for error locations (e.g. when query is stored in .graphql file)
v0.10.2
v0.10.1
v0.10.0

This release brings several breaking changes. Please refer to UPGRADE document for details.

New features and notable changes:

  • Changed minimum PHP version from 5.4 to 5.5
  • Lazy loading of types without separate build step (see https://github.com/webonyx/graphql-php/issues/69, see docs)
  • PSR-7 compliant Standard Server (see docs)
  • New default error formatting, which does not expose sensitive data (see docs)
  • Ability to define custom error handler to filter/log/re-throw exceptions after execution (see docs)
  • Allow defining schema configuration using objects with fluent setters vs array (see docs)
  • Allow serializing AST to array and re-creating AST from array lazily (see docs)
  • Apollo-style query batching support via server (see docs)
  • Schema validation, including validation of interface implementations (see docs)
  • Ability to pass custom config formatter when defining schema using GraphQL type language (see docs)

Improvements:

Deprecations and breaking changes - see UPGRADE document.

Older
Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
davejamesmiller/laravel-breadcrumbs
artisanry/parsedown
christhompsontldr/phpsdk
enqueue/dsn
bunny/bunny
enqueue/test
enqueue/null
enqueue/amqp-tools
milesj/emojibase
bower-asset/punycode
bower-asset/inputmask
bower-asset/jquery
bower-asset/yii2-pjax
laravel/nova
spatie/laravel-mailcoach
spatie/laravel-superseeder
laravel/liferaft
nst/json-test-suite
danielmiessler/sec-lists
jackalope/jackalope-transport