get_viewer.py 302 B

1234567891011121314151617
  1. # Generated by ariadne-codegen
  2. # Source: tools/graphql_codegen/api/
  3. from __future__ import annotations
  4. from typing import Optional
  5. from wandb._pydantic import GQLResult
  6. from .fragments import UserFragment
  7. class GetViewer(GQLResult):
  8. viewer: Optional[UserFragment]
  9. GetViewer.model_rebuild()