Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat(async) - Improvement #219

Closed
wants to merge 28 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
d273922
Fix(register): updated register_enum function support custom classes
AdithyanJothir Apr 5, 2023
b9a1f24
Merge pull request #4 from AdithyanJothir/master
adarshdigievo Apr 5, 2023
ec1c7af
Merge branch 'graphql-python:master' into master
arun-sureshkumar Apr 9, 2023
81746fb
Support Async
arunsureshkumar Apr 9, 2023
e225c5c
Convert: get_node to async
arunsureshkumar Apr 11, 2023
1f0250b
Merge branch 'graphql-python:master' into master
arunsureshkumar Apr 11, 2023
adec7f5
Merge remote-tracking branch 'origin/master' into feat(async)
arunsureshkumar Apr 11, 2023
ec3e60e
Fix: Test Case
arunsureshkumar Apr 11, 2023
5ff73e6
Bug Fix on connection_resolver
arunsureshkumar Apr 11, 2023
d473b11
Support Async
arunsureshkumar Apr 11, 2023
7c99bc1
Fix: connection_resolver
arunsureshkumar Apr 11, 2023
2fe5008
Support Async, Test Case Added
arunsureshkumar Apr 11, 2023
9581ad2
Bump Version : 0.4.0
arunsureshkumar Apr 11, 2023
6eb5d23
Merge remote-tracking branch 'origin/v0.4.0' into feat(async)
arunsureshkumar Apr 11, 2023
c5b71cf
Add asgiref to dependency
arunsureshkumar Apr 11, 2023
e5bb865
Add pytest-asyncio to dependency
arunsureshkumar Apr 11, 2023
3d183f8
Fix: Test Case
arunsureshkumar Apr 11, 2023
254cb7d
Update: README.md
arunsureshkumar Apr 11, 2023
55d9eb6
Blocking Threaded to Async
arunsureshkumar Apr 12, 2023
2b2813d
Bug Fix: Argument Parser
arunsureshkumar Apr 12, 2023
f171ddd
(Deprecated) get_resolver to wrap_resolve
arunsureshkumar Apr 12, 2023
f4a2037
Fix: Count Performance
arunsureshkumar Apr 12, 2023
ec75d29
Fix: Queryset Check
arunsureshkumar Apr 24, 2023
67de479
Optimise: Lazy Reference Resolver
arunsureshkumar Apr 28, 2023
d1d60b9
Fix: DeprecationWarnings
arunsureshkumar Apr 30, 2023
60f2273
Fix: Queryset evaluation
arunsureshkumar May 6, 2023
9be137c
feat: add support for mongo date field
mak626 Aug 1, 2023
cb56602
Merge pull request #7 from mak626/date-field-support
abhinand-c Aug 1, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion graphene_mongo/tests/test_relay_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ async def test_should_query_editors_with_dataloader(fixtures):
from promise.dataloader import DataLoader

class ArticleLoader(DataLoader):
async def batch_load_fn(self, instances):
def batch_load_fn(self, instances):
queryset = models.Article.objects(editor__in=instances)
return Promise.resolve(
[
Expand Down