ashnap123
ashnap123
Ideally both, but I think most value would come from code completion when building operations.
When generating the schema would it be enough to add type hints? Replacing: ``` class MarketingBudget(sgqlc.types.Type): __schema__ = shopify_schema __field_names__ = ('budget_type', 'total') budget_type = sgqlc.types.Field(sgqlc.types.non_null(MarketingBudgetBudgetType), graphql_name='budgetType') ``` With: ```...
Thanks for taking time to think about this. If it's ever implemented I will definitely use this library in future.