graphql-python / graphql-python/graphene-mongo
Filtering by id for MongoengineConnectionField returns edge with null
Open
- Dominant language
- Python
- Stars
- 287
- Forks
- 111
- PR merge metrics
- No merged PRs in 30d
Description
When I try to filter by id using `MongoengineConnectionField`, using this query:
```
{tasks(id:"5ecd4880f80bde8199d3d005") {
edges {
node {
id
state
}
}
}}```
returns this:
```{
"data": {
"tasks": {
"edges": [
{
"node": null
}
]
}
}
}```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.