# Generated by ariadne-codegen
# Source: tools/graphql_codegen/projects/

from __future__ import annotations

from typing import Optional

from wandb._pydantic import GQLBase

from .fragments import RegistryFragment


class FetchRegistry(GQLBase):
    entity: Optional[FetchRegistryEntity]


class FetchRegistryEntity(GQLBase):
    project: Optional[RegistryFragment]


FetchRegistry.model_rebuild()
FetchRegistryEntity.model_rebuild()
