The label value. Returns ------- str The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text. Raises
(self)
| 11192 | return await _ctx.execute(str) |
| 11193 | |
| 11194 | async def value(self) -> str: |
| 11195 | """The label value. |
| 11196 | |
| 11197 | Returns |
| 11198 | ------- |
| 11199 | str |
| 11200 | The `String` scalar type represents textual data, represented as |
| 11201 | UTF-8 character sequences. The String type is most often used by |
| 11202 | GraphQL to represent free-form human-readable text. |
| 11203 | |
| 11204 | Raises |
| 11205 | ------ |
| 11206 | ExecuteTimeoutError |
| 11207 | If the time to execute the query exceeds the configured timeout. |
| 11208 | QueryError |
| 11209 | If the API returns an error. |
| 11210 | """ |
| 11211 | _args: list[Arg] = [] |
| 11212 | _ctx = self._select("value", _args) |
| 11213 | return await _ctx.execute(str) |
| 11214 | |
| 11215 | |
| 11216 | @typecheck |