-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f022589
commit eac3ee7
Showing
8 changed files
with
260 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
metaphor/dbt/cloud/discovery_api/graphql_client/get_job_run_tests.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Generated by ariadne-codegen | ||
# Source: queries.graphql | ||
|
||
from typing import Any, List, Optional | ||
|
||
from pydantic import Field | ||
|
||
from .base_model import BaseModel | ||
|
||
|
||
class GetJobRunTests(BaseModel): | ||
job: Optional["GetJobRunTestsJob"] | ||
|
||
|
||
class GetJobRunTestsJob(BaseModel): | ||
tests: List["GetJobRunTestsJobTests"] | ||
|
||
|
||
class GetJobRunTestsJobTests(BaseModel): | ||
column_name: Optional[str] = Field(alias="columnName") | ||
compiled_sql: Optional[str] = Field(alias="compiledSql") | ||
compiled_code: Optional[str] = Field(alias="compiledCode") | ||
depends_on: List[str] = Field(alias="dependsOn") | ||
name: Optional[str] | ||
run_id: Any = Field(alias="runId") | ||
unique_id: str = Field(alias="uniqueId") | ||
|
||
|
||
GetJobRunTests.model_rebuild() | ||
GetJobRunTestsJob.model_rebuild() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.