Metadata-Version: 1.1
Name: dagit
Version: 0.0.1
Summary: Web UI for dagster, an opinionated pipeline runner.
Home-page: https://github.com/dagster-io/dagster
Author: Elementl
Author-email: UNKNOWN
License: Apache-2.0
Description: ============
        Dagster UI
        ============
        
        Eg in dagster_examples
        
        .. code-block:: sh
        
          python ../../../dagster-ui/bin/dagster-ui  ui -p 3333
        
        Running dev ui:
        
        .. code-block:: sh
          REACT_APP_GRAPHQL_URI="http://localhost:3333/graphql" yarn start
        
        At ``localhost:3000/graphql``
        
        .. code-block:: graphql
        
          {
            pipeline(name:"pandas_hello_world") {
              name
              description
              solids {
                name
                description
                inputs {
                  name
                  description
                  dependsOn {
                    name
                  }
                  sources {
                    sourceType
                    description
                    arguments {
                      name
                      description
                      type
                      isOptional
                    }
                  }
                  expectations {
                    name
                    description
                  }
                }
                output {
                  materializations {
                    name
                    description
                    arguments {
                      name
                      description
                      type
                      isOptional
                    }
                  }
                  expectations {
                    name
                    description
                  }
                }
              }
              context {
                name
                description
                arguments {
                  name
                  description
                  type
                  isOptional
                }
              }
            }
          }
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
