Ariadne Code Generator vs. sgqlc #1067
Answered
by
rafalp
amacfie-tc
asked this question in
Q&A
-
The sgqlc project has a code generator that appears to do something similar to ariadne-codegen. What are the pros and cons of each tool? |
Beta Was this translation helpful? Give feedback.
Answered by
rafalp
Mar 30, 2023
Replies: 1 comment
-
At quick glance they appear to treat GraphQL like database and implement and generate queries from custom query builder (like SQLAlchemy expressions). Ariadne Codegen emulates WSDL approach of the yore giving you |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
rafalp
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
At quick glance they appear to treat GraphQL like database and implement and generate queries from custom query builder (like SQLAlchemy expressions).
Ariadne Codegen emulates WSDL approach of the yore giving you
GraphQLClient
class with methods corresponding to the GraphQL queries you've specified.