Gustavo Sverzut Barbieri
Gustavo Sverzut Barbieri
You need to import `sgqlc.types.datetime` so it will run https://github.com/profusion/sgqlc/blob/master/sgqlc/types/datetime.py#L307-L311 otherwise it doesn't have the mapping. It's not automatic to avoid polluting the conversion with undesired mappings, so you must...
It's due the origin where the fields are looked, instead of looking at the given object (with extra fields), I do look at the known fields in the actual type....
just a sub-selection, you can't. You need to do in 2 statements: ```py issues.__fields__() # the the basic fields issues.reporter.__fields__() ``` However, if you want the whole subtree -- be...
@n-wach well, as I said you shouldn't be querying for all fields, just the fields that you use, that's the idea behind GraphQL, the lack of "versions" and one of...
@n-wach wow, my company is a heavy user of GraphQL on both server and client side, we have web applications, react-native applications, federated servers and so on, we never had...
ok, anyway, the code that `__fields__` and `__to_graphql__()` uses are based on primitives like `dir()` and iterations, then you can probably implement that behavior yourself, correct? Do you have any...
I think it could be, but I fear people abusing it, with a `__fields__` and a huuuuge list of stuff, moving from python to its own "dsl". Remember that GraphQL...
hi @paras-jindal, you need to provide the full backtrace and if possible a way to reproduce it, otherwise I'm clueless.
also share your setup, in particular the versions, including graphql-core.
could you try to run https://github.com/profusion/sgqlc/tree/master/examples/github? ```sh ./update-schema.sh ./update-operations.sh ``` I just tested with Git and it works properly (it will download an updated github_schema.json/py, but other than that the...