Graphene

Latest version: v3.4.3

Safety actively analyzes 723650 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 11

3.2.1

What's Changed
Non-required `InputFields` and `Arguments` can now be marked as deprecated by passing the `deprecation_reason` keyword argument to the constructor.
* Complete deprecated fields and arguments support by vhutov in https://github.com/graphql-python/graphene/pull/1472

New Contributors
* vhutov made their first contribution in https://github.com/graphql-python/graphene/pull/1472

**Full Changelog**: https://github.com/graphql-python/graphene/compare/v3.2.0...v3.2.1

3.2.0

What's Changed
Support for custom global IDs in `relay.Node`

The global ID type of a `Node` can now be customized:

python
class CustomNode(Node):
class Meta:
global_id_type = CustomGlobalIDType


class User(ObjectType):
class Meta:
interfaces = [CustomNode]

name = String()

classmethod
def get_node(cls, _type, _id):
return self.users[_id]


Available Types
Currently, the following types are available:

- **`DefaultGlobalIDType`**: Default global ID type: base64 encoded version of "<node type name>: <node id>". (Previously the only option) Scalar: `ID`
- **`SimpleGlobalIDType `**: Simple global ID type: simply the id of the object. Scalar: `ID`
- **`UUIDGlobalIDType `**: UUID global ID type. Scalar: `UUID`

Customization
To create a custom global type, `BaseGlobalIDType` must be extended:

python

class CustomGlobalIDType(BaseGlobalIDType):

graphene_type = CustomScalar

classmethod
def resolve_global_id(cls, info, global_id):
_type = custom_get_type_from_global_id(global_id)
return _type, global_id

classmethod
def to_global_id(cls, _type, _id):
return _id

`graphene_type` specifies the type of scalar to be used in the schema. Remember, that if you're using `ID` as a scalar, you might need to deserialize your custom global ID first!

Relevant PR:
* feat: Add support for custom global (Issue 1276) by tcleonard in https://github.com/graphql-python/graphene/pull/1428
Fixes & Improvements:

- Regression fix: (graphene 2->3) `ObjectTypes` can be copied again 1333 by keu210
- Fix: Enums can now have members called `description`: 1478 by mike-roberts-healx
- Enums are now hashable: 1461 by bkad
- Enums are now iterable: 1473 by rgroothuijsen
- Dependency on unused promise Library was removed: 1476 by mike-roberts-healx
- Docs improvements by rgroothuijsen

All Changes
* feat: Add support for custom global (Issue 1276) by tcleonard in https://github.com/graphql-python/graphene/pull/1428
* Add copy function for GrapheneGraphQLType by keu210 in https://github.com/graphql-python/graphene/pull/1463
* hashable Enum by bkad in https://github.com/graphql-python/graphene/pull/1461
* Clarify execution order in middleware docs by rgroothuijsen in https://github.com/graphql-python/graphene/pull/1475
* fix: MyPy findings due to a mypy version upgrade were corrected by erikwrede in https://github.com/graphql-python/graphene/pull/1477
* Disambiguate argument name in quickstart docs by rgroothuijsen in https://github.com/graphql-python/graphene/pull/1474
* Make Graphene enums iterable like Python enums by rgroothuijsen in https://github.com/graphql-python/graphene/pull/1473
* Remove unnecessary dependency on 'promise' library by mike-roberts-healx in https://github.com/graphql-python/graphene/pull/1476
* Do not interpret Enum members called 'description' as description properties by mike-roberts-healx in https://github.com/graphql-python/graphene/pull/1478

New Contributors
* keu210 made their first contribution in https://github.com/graphql-python/graphene/pull/1463
* bkad made their first contribution in https://github.com/graphql-python/graphene/pull/1461
* rgroothuijsen made their first contribution in https://github.com/graphql-python/graphene/pull/1475
* mike-roberts-healx made their first contribution in https://github.com/graphql-python/graphene/pull/1476

**Full Changelog**: https://github.com/graphql-python/graphene/compare/v3.1.1...v3.2.0

3.1.1

What's changed
Dataloader
Graphene now includes an updated version of `aiodataloader` by Syrus Akbary under `graphene.utils.dataloader` due to inactivity of the old repository. The update fixes an issue some users experienced when trying to use `dataloader` in conjunction with pytest (https://github.com/syrusakbary/aiodataloader/issues/13). Further contributions and updates to dataloader in this repo are welcome!

Enums
A custom typename can now be added when using `from_enum`:

python
from enum import Enum as PyEnum

class Color(PyEnum):
RED = 1
YELLOW = 2
BLUE = 3

GColor = Enum.from_enum(Color, description="original colors")
UniqueGColor = Enum.from_enum(
Color, name="UniqueColor", description="unique colors"
)


graphql
type Query {
color: Color!
uniqueColor: UniqueColor!
}
"""original colors"""
enum Color {
RED
YELLOW
BLUE
}
"""unique colors"""
enum UniqueColor {
RED
YELLOW
BLUE
}

* feat: add ability to provide a type name to enum when using from_enum by tcleonard in https://github.com/graphql-python/graphene/pull/1430


Interfaces
Interfaces extending interfaces is now supported!
python
class FooInterface(Interface):
foo = String()

class BarInterface(Interface):
class Meta:
interfaces = [FooInterface]

foo = String()
bar = String()


graphql
interface FooInterface {
foo: String
}

interface BarInterface implements FooInterface {
foo: String
bar: String
}

* Add support for interfaces on interfaces by AlecRosenbaum in https://github.com/graphql-python/graphene/pull/1304


Thank you to everyone that contributed to this release!

Other Changes
* Fix typo in union comments by ramonwenger in https://github.com/graphql-python/graphene/pull/1424
* Add Codecov to github actions by erikwrede in https://github.com/graphql-python/graphene/pull/1431
* docs: Fix a few typos by timgates42 in https://github.com/graphql-python/graphene/pull/1437
* Highlight .get in backticks by RJ722 in https://github.com/graphql-python/graphene/pull/1402
* Add support for interfaces on interfaces by AlecRosenbaum in https://github.com/graphql-python/graphene/pull/1304
* Update Dataloader docs [Waiting for Graphene v3 to be live] by jkimbo in https://github.com/graphql-python/graphene/pull/1190
* Avoid ambiguity in graphene.Mutation docstring [documentation] by belkka in https://github.com/graphql-python/graphene/pull/1381
* Issue 1413 fix invalid input type by tcleonard in https://github.com/graphql-python/graphene/pull/1414
* Delete coveralls.yml by erikwrede in https://github.com/graphql-python/graphene/pull/1442
* fix: use install instead of instal for consistency by karmingc in https://github.com/graphql-python/graphene/pull/1444
* Update quickstart.rst by alimcmaster1 in https://github.com/graphql-python/graphene/pull/1407
* Update pre-commit hooks by ulgens in https://github.com/graphql-python/graphene/pull/1447
* fix: update ariadne url to the new docs by DrewHoo in https://github.com/graphql-python/graphene/pull/1370
* Add Python 3.11 release candidate 1 to the testing by cclauss in https://github.com/graphql-python/graphene/pull/1450
* Remove duplicate flake8 call in tox, it's covered by pre-commit by ulgens in https://github.com/graphql-python/graphene/pull/1448
* Fix BigInt export by erikwrede in https://github.com/graphql-python/graphene/pull/1456
* Upgrade base Python version to 3.10 by ulgens in https://github.com/graphql-python/graphene/pull/1449
* Upgrade GitHub Actions by cclauss in https://github.com/graphql-python/graphene/pull/1457
* Vendor `DataLoader` from `aiodataloader` and move `get_event_loop()` out of `__init__` function. by flipbit03 in https://github.com/graphql-python/graphene/pull/1459

New Contributors
* ramonwenger made their first contribution in https://github.com/graphql-python/graphene/pull/1424
* timgates42 made their first contribution in https://github.com/graphql-python/graphene/pull/1437
* RJ722 made their first contribution in https://github.com/graphql-python/graphene/pull/1402
* belkka made their first contribution in https://github.com/graphql-python/graphene/pull/1381
* karmingc made their first contribution in https://github.com/graphql-python/graphene/pull/1444
* alimcmaster1 made their first contribution in https://github.com/graphql-python/graphene/pull/1407
* ulgens made their first contribution in https://github.com/graphql-python/graphene/pull/1447
* DrewHoo made their first contribution in https://github.com/graphql-python/graphene/pull/1370
* flipbit03 made their first contribution in https://github.com/graphql-python/graphene/pull/1459

**Full Changelog**: https://github.com/graphql-python/graphene/compare/v3.1.0...v3.1.1

3.1.0

What's Changed
* Various spelling and grammar fixes for the documentation. by justinrmiller in https://github.com/graphql-python/graphene/pull/1324
* Chore: Refactor Multi Expression Code ✨ by yezz123 in https://github.com/graphql-python/graphene/pull/1387
* Add Python 3.9 and 3.10 to the test matrix by Cito in https://github.com/graphql-python/graphene/pull/1401
* fix UPGRADE-v2.0.md by conao3 in https://github.com/graphql-python/graphene/pull/1405
* fix: default value for argument should be Undefined (Issue 1394) by tcleonard in https://github.com/graphql-python/graphene/pull/1412
* fix: add default param _variables to parse_literal 1419 by fugal-dy in https://github.com/graphql-python/graphene/pull/1420
* Make Graphene compatible with GraphQL-Core 3.2 by Cito in https://github.com/graphql-python/graphene/pull/1421

New Contributors
* justinrmiller made their first contribution in https://github.com/graphql-python/graphene/pull/1324
* yezz123 made their first contribution in https://github.com/graphql-python/graphene/pull/1387
* conao3 made their first contribution in https://github.com/graphql-python/graphene/pull/1405
* fugal-dy made their first contribution in https://github.com/graphql-python/graphene/pull/1420

**Full Changelog**: https://github.com/graphql-python/graphene/compare/v3.0.0...v3.1.0

3.0.0

[Release notes](https://github.com/graphql-python/graphene/wiki/v3-release-notes)
The full release notes including an upgrade guide can be found here: https://github.com/graphql-python/graphene/wiki/v3-release-notes
What's Changed
* Graphene v3 following v3 graphql-core by mvanlonden in https://github.com/graphql-python/graphene/pull/1048
* Fix typos by minho42 in https://github.com/graphql-python/graphene/pull/1066
* Remove AbstractType by jkimbo in https://github.com/graphql-python/graphene/pull/1053
* Propagate arguments of relay.NodeField to Field by tdiam in https://github.com/graphql-python/graphene/pull/1036
* Fix typo in execute.rst by TheMelter in https://github.com/graphql-python/graphene/pull/1115
* Increase the allowed version of aniso8601 by ymoch in https://github.com/graphql-python/graphene/pull/1072
* Update quickstart.rst by ibhlool7 in https://github.com/graphql-python/graphene/pull/1090
* Add file uploading docs by jkimbo in https://github.com/graphql-python/graphene/pull/1084
* Fix objecttypes DefaultResolver example (1087) by tompao in https://github.com/graphql-python/graphene/pull/1088
* Fix tests by jkimbo in https://github.com/graphql-python/graphene/pull/1119
* Fix example code by jkimbo in https://github.com/graphql-python/graphene/pull/1120
* Update readme by jkimbo in https://github.com/graphql-python/graphene/pull/1130
* Use unidecode to handle unicode characters in constant names by henrythor in https://github.com/graphql-python/graphene/pull/1080
* The default_value of InputField should be INVALID by ganwell in https://github.com/graphql-python/graphene/pull/1111
* Add a helpful message to when a global_id fails to parse. by allen-munsch in https://github.com/graphql-python/graphene/pull/1074
* fix example middleware class in docs by dsanders11 in https://github.com/graphql-python/graphene/pull/1134
* fix typo in class 'Interface' by JMmmmuu in https://github.com/graphql-python/graphene/pull/1135
* Fix example query in quickstart doc by ko-lem in https://github.com/graphql-python/graphene/pull/1139
* Fixed import causing Graphene v3 to crash by jaydenwindle in https://github.com/graphql-python/graphene/pull/1143
* Replace INVALID with Undefined by jkimbo in https://github.com/graphql-python/graphene/pull/1146
* Added support for subscription by rob-blackbourn in https://github.com/graphql-python/graphene/pull/1107
* Remove subclass polyfill by syrusakbary in https://github.com/graphql-python/graphene/pull/1156
* Updated all str.format(…) to f-strings by syrusakbary in https://github.com/graphql-python/graphene/pull/1158
* Fixed examples, make root object explicit inside resolvers and mutate by hzlmn in https://github.com/graphql-python/graphene/pull/1159
* Remove unused function by jkimbo in https://github.com/graphql-python/graphene/pull/1160
* Add some more tests for Interface by jkimbo in https://github.com/graphql-python/graphene/pull/1154
* Use default_resolver to resolve values when using the source attribute by jkimbo in https://github.com/graphql-python/graphene/pull/1155
* Add note about the use of `args` by jkimbo in https://github.com/graphql-python/graphene/pull/1170
* Docs: integrations: fix FastAPI link by sduthil in https://github.com/graphql-python/graphene/pull/1177
* Fix resolve method parameters bullet list by rrueth in https://github.com/graphql-python/graphene/pull/1178
* Allow fast ObjectType creation based on dataclasses by syrusakbary in https://github.com/graphql-python/graphene/pull/1157
* added graphene import to READMEs by kimbo in https://github.com/graphql-python/graphene/pull/1183
* Update excluded packages list to properly exclude examples package by radekwlsk in https://github.com/graphql-python/graphene/pull/1187
* Fix typos by kevinharvey in https://github.com/graphql-python/graphene/pull/1192
* Fix issue with trailing whitespace by jkimbo in https://github.com/graphql-python/graphene/pull/1197
* Fix typo in quickstart document by dbgb in https://github.com/graphql-python/graphene/pull/1201
* Fix DateTime Scalar parse_literal methods (1199) by Cito in https://github.com/graphql-python/graphene/pull/1200
* Remove staticmethod decorator in mutations doc by jkimbo in https://github.com/graphql-python/graphene/pull/1206
* Remove to_const function by jkimbo in https://github.com/graphql-python/graphene/pull/1212
* Update requirement for Query type in mutation docs by jkimbo in https://github.com/graphql-python/graphene/pull/1213
* Rename variables called type to type_ by DoctorJohn in https://github.com/graphql-python/graphene/pull/1216
* Set min version of graphql-core to v3.1.1 by jkimbo in https://github.com/graphql-python/graphene/pull/1215
* Revert 1213 update mutation docs by jkimbo in https://github.com/graphql-python/graphene/pull/1214
* ObjectType meta arguments by jkimbo in https://github.com/graphql-python/graphene/pull/1219
* Add Base64 scalar by EpicEric in https://github.com/graphql-python/graphene/pull/1221
* Expose Base64 type and add custom scalar examples by jkimbo in https://github.com/graphql-python/graphene/pull/1223
* Improve enum compatibility by jkimbo in https://github.com/graphql-python/graphene/pull/1153
* Minor grammatical fix in the schema docs by rednafi in https://github.com/graphql-python/graphene/pull/1237
* Subscription revamp by syrusakbary in https://github.com/graphql-python/graphene/pull/1235
* Split out the subscriptions documentation a separate file and fix it by jkimbo in https://github.com/graphql-python/graphene/pull/1245
* Fix subscribe with arguments by jkimbo in https://github.com/graphql-python/graphene/pull/1251
* Fix Typo in Docs by plopd in https://github.com/graphql-python/graphene/pull/1252
* Fix typo in Schema docs by varundey in https://github.com/graphql-python/graphene/pull/1259
* add BigInt type by pizzapanther in https://github.com/graphql-python/graphene/pull/1261
* Syntax Error Fixed for Dictionary assert by lnxpy in https://github.com/graphql-python/graphene/pull/1267
* Add UnforgivingExecutionContext by AlecRosenbaum in https://github.com/graphql-python/graphene/pull/1255
* Remove Object Mutation dead link from Relay docs by varundey in https://github.com/graphql-python/graphene/pull/1272
* fix(Decimal): parse integers as decimal. by zbyte64 in https://github.com/graphql-python/graphene/pull/1295
* Fix links to Relay docs by bartenra in https://github.com/graphql-python/graphene/pull/1318
* Language fixes on index.rst by shukryzablah in https://github.com/graphql-python/graphene/pull/1313
* Use argument's `default_value` regardless if the input field is required by minhtule in https://github.com/graphql-python/graphene/pull/1326
* fix field name in execute.rst example by kevinr-electric in https://github.com/graphql-python/graphene/pull/1327
* Fix typo in docstring of ObjectType by sir-sigurd in https://github.com/graphql-python/graphene/pull/1343
* Allow later aniso8601 releases by fabaff in https://github.com/graphql-python/graphene/pull/1331
* Update pytz to 2021.1 by fabaff in https://github.com/graphql-python/graphene/pull/1330
* add support for query validation by aryaniyaps in https://github.com/graphql-python/graphene/pull/1357
* Fix actions by aryaniyaps in https://github.com/graphql-python/graphene/pull/1359
* Fix GraphQL-core dependency by ekampf in https://github.com/graphql-python/graphene/pull/1377
* Fix unseen examples by aryaniyaps in https://github.com/graphql-python/graphene/pull/1376

New Contributors
* minho42 made their first contribution in https://github.com/graphql-python/graphene/pull/1066
* tdiam made their first contribution in https://github.com/graphql-python/graphene/pull/1036
* TheMelter made their first contribution in https://github.com/graphql-python/graphene/pull/1115
* ymoch made their first contribution in https://github.com/graphql-python/graphene/pull/1072
* ibhlool7 made their first contribution in https://github.com/graphql-python/graphene/pull/1090
* tompao made their first contribution in https://github.com/graphql-python/graphene/pull/1088
* henrythor made their first contribution in https://github.com/graphql-python/graphene/pull/1080
* ganwell made their first contribution in https://github.com/graphql-python/graphene/pull/1111
* allen-munsch made their first contribution in https://github.com/graphql-python/graphene/pull/1074
* dsanders11 made their first contribution in https://github.com/graphql-python/graphene/pull/1134
* JMmmmuu made their first contribution in https://github.com/graphql-python/graphene/pull/1135
* ko-lem made their first contribution in https://github.com/graphql-python/graphene/pull/1139
* jaydenwindle made their first contribution in https://github.com/graphql-python/graphene/pull/1143
* rob-blackbourn made their first contribution in https://github.com/graphql-python/graphene/pull/1107
* hzlmn made their first contribution in https://github.com/graphql-python/graphene/pull/1159
* sduthil made their first contribution in https://github.com/graphql-python/graphene/pull/1177
* rrueth made their first contribution in https://github.com/graphql-python/graphene/pull/1178
* kimbo made their first contribution in https://github.com/graphql-python/graphene/pull/1183
* radekwlsk made their first contribution in https://github.com/graphql-python/graphene/pull/1187
* kevinharvey made their first contribution in https://github.com/graphql-python/graphene/pull/1192
* dbgb made their first contribution in https://github.com/graphql-python/graphene/pull/1201
* Cito made their first contribution in https://github.com/graphql-python/graphene/pull/1200
* DoctorJohn made their first contribution in https://github.com/graphql-python/graphene/pull/1216
* EpicEric made their first contribution in https://github.com/graphql-python/graphene/pull/1221
* rednafi made their first contribution in https://github.com/graphql-python/graphene/pull/1237
* plopd made their first contribution in https://github.com/graphql-python/graphene/pull/1252
* lnxpy made their first contribution in https://github.com/graphql-python/graphene/pull/1267
* AlecRosenbaum made their first contribution in https://github.com/graphql-python/graphene/pull/1255
* zbyte64 made their first contribution in https://github.com/graphql-python/graphene/pull/1295
* bartenra made their first contribution in https://github.com/graphql-python/graphene/pull/1318
* shukryzablah made their first contribution in https://github.com/graphql-python/graphene/pull/1313
* kevinr-electric made their first contribution in https://github.com/graphql-python/graphene/pull/1327
* sir-sigurd made their first contribution in https://github.com/graphql-python/graphene/pull/1343
* fabaff made their first contribution in https://github.com/graphql-python/graphene/pull/1331
* aryaniyaps made their first contribution in https://github.com/graphql-python/graphene/pull/1357

**Full Changelog**: https://github.com/graphql-python/graphene/compare/v2.1.8...v3.0.0

3.0.0b8

Changes

* fix: `graphql-core` dependency resolution. (1377)

All changes: https://github.com/graphql-python/graphene-django/compare/v3.0.0b7...v3.0.0b8

Page 2 of 11

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.