(self)
| 136 | return await self.start() |
| 137 | |
| 138 | async def get_schema(self) -> graphql.GraphQLSchema: |
| 139 | client = (await self.get_session()).client |
| 140 | if not client.schema: |
| 141 | msg = "No schema in session" |
| 142 | raise ClientConnectionError(msg) |
| 143 | return client.schema |
| 144 | |
| 145 | async def execute(self, query: gql.GraphQLRequest) -> Any: |
| 146 | return await (await self.get_session()).execute(query) |
no test coverage detected