Rafał Pitoń
Rafał Pitoń
@Kludex ok. I guess only thing missing before we can merge this is rebase on master. Unless we want to wait for more reviews?
Thinking quick here, but `ariadne.contrib` could include validators or linters that would compare the "Python-land" against the GraphQL schema. Eg. we could take a return type from resolver function and...
Hello Felipe, Good news is next week I would like to release the Ariadne 0.18 which will include the dataloaders support for synchronous servers. :)
I don't know why this discussion is happening in query batching PR 😅 Anyway, I'm sorry but there will be delays with next release, biggest blocker is finishing docs for...
I've marked dataloaders dicussion as offtopic.
I've did second look at this and I think parsing `data` to context callable is doable, so I'll split root resolver work in separate task and take care of both...
I've also considered passing data to extensions directly, but I feel that added more complexity than it was worth it. Also I would like to eventually replace current extension system...
@dariuszkuc Yup, thanks!
https://ariadnegraphql.org/docs/middleware > GraphQL middleware are Python __functions__ and __callable objects__ that can be used to inject custom logic into query executor.
This is possible as of Ariadne 0.18. To do this one has to implement custom query parser that discards `query` part of payload and returns custom parsed query based on...