Changeset View
Changeset View
Standalone View
Standalone View
js_modules/dagit/src/RepositoryInformation.tsx
Show All 14 Lines | ... on PythonRepositoryOrigin { | ||||
} | } | ||||
executablePath | executablePath | ||||
} | } | ||||
... on GrpcRepositoryOrigin { | ... on GrpcRepositoryOrigin { | ||||
grpcUrl | grpcUrl | ||||
} | } | ||||
} | } | ||||
fragment RepositoryInfoFragment on Repository { | fragment RepositoryInfoFragment on Repository { | ||||
id | |||||
name | name | ||||
origin { | origin { | ||||
...RepositoryOriginFragment | ...RepositoryOriginFragment | ||||
} | } | ||||
location { | location { | ||||
id | |||||
name | name | ||||
} | } | ||||
} | } | ||||
`; | `; | ||||
export const RepositoryOriginInformation: React.FunctionComponent<{ | export const RepositoryOriginInformation: React.FunctionComponent<{ | ||||
origin: RepositoryOriginFragment; | origin: RepositoryOriginFragment; | ||||
dagitExecutablePath?: string; | dagitExecutablePath?: string; | ||||
▲ Show 20 Lines • Show All 43 Lines • Show Last 20 Lines |