sgqlc
sgqlc copied to clipboard
Simple GraphQL Client
When using the RequestsEndpoint for fetching data, if you do not set the timeout, it uses requests defaults, which means no timeout. However, if setting a timeout, the endpoint is...
Sorry, I'm new to this. Is there a way to generate conditional queries like - query reviews { Reviews(where: { id: {_eq : } } ) { id review_text }...
The `json_data not in self` check in https://github.com/profusion/sgqlc/blob/9c7444962b06af432937b6655087e152e37f0f8e/sgqlc/types/__init__.py#L1405-L1410 seems to prevent using enum-typed variables. The symptom is > ValueError: ThreadSortOrder selection 'direction': $orderByDirection (SortDirection does not accept value $orderByDirection) (sorry,...
First: any Forum where users can exchange experiences and doubts? Love this project, I've been using to Query api's of all type and complex. More a question than an issue....
Is there a way to use the __fields__ method to query items in the current level, as well as those in a sublevel? If something looked like this: ` query...
``` sgqlc/operation/__init__.py 292 2 99% 1257, 1402 ... TOTAL 1400 2 99% nose.plugins.cover: ERROR: TOTAL Coverage did not reach minimum required: 100% COVERAGE FAILED: Fix coverage errors and try again...
I would like to use sgqlc for a project that is currently committed to supporting Python 3.5 (among other versions). Would it be possible to add Python 3.5 support to...
Hi, I'm using this against an endpoint that enforces authorisation in all requests. This is straightforward in the plain HTTP connections but WebSocket works differently - see here for example:...
Hey, I'm using sgqlc to introspect a schema and then generate queries from it and it is going well. However, I'm trying to parallelize tasks that contain an operation, which...