I expected all exceptions to be captured by gql.exceptions.TransportError:
from gql.exceptions import TransportError
try:
...
except TransportError as e:
...
But TransportQueryError extends from Exception:
|
class TransportQueryError(Exception): |
Is this by design?