This is using Python and the Graphene library.
I want to provide a list of constants to my front-end via GraphQL. I went down the route of using inspection, but it will only output the keys of the enum. Not the values. I learned that Graphene enums only contain name/description.
{
__type(name: "FruitEnum") {
enumValues {
name
description
}
}
}
this returns
{
"data": {
"__type": {
"enumValues": [
{
"name": "APPLE",
"description": null
},
{
"name": "BANANA",
"description": null
},
{
"name": "ORANGE",
"description": null
}
]
}
},
"errors": null
}
This is what the actual enum looks like
class FruitEnum(Enum):
APPLE = "Apple -- but could also be other information for the front end"
BANANA = "Banana"
ORANGE = "Orange"
Is there a preferred way of exposing a list of constants like this through GraphQL? Can introspection be modified with a resolver to read the value? I am taking a regular Python enum and registering it with Graphene using the Enum.from_enum function.
I don't think you add or remove fields from the
enumValues
since it is the standard.But, you can add the description by specifying a
description
property
in the enum class.Thus you will get a response as,