Whether to start the SDK runtime in debug mode with an interactive terminal. Returns ------- bool The `Boolean` scalar type represents `true` or `false`. Raises ------ ExecuteTimeoutError If the time to execute the que
(self)
| 13935 | """The SDK config of the module.""" |
| 13936 | |
| 13937 | async def debug(self) -> bool: |
| 13938 | """Whether to start the SDK runtime in debug mode with an interactive |
| 13939 | terminal. |
| 13940 | |
| 13941 | Returns |
| 13942 | ------- |
| 13943 | bool |
| 13944 | The `Boolean` scalar type represents `true` or `false`. |
| 13945 | |
| 13946 | Raises |
| 13947 | ------ |
| 13948 | ExecuteTimeoutError |
| 13949 | If the time to execute the query exceeds the configured timeout. |
| 13950 | QueryError |
| 13951 | If the API returns an error. |
| 13952 | """ |
| 13953 | _args: list[Arg] = [] |
| 13954 | _ctx = self._select("debug", _args) |
| 13955 | return await _ctx.execute(bool) |
| 13956 | |
| 13957 | async def id(self) -> str: |
| 13958 | """A unique identifier for this SDKConfig. |
no test coverage detected