building-envelope-data / api

API specification to exchange data about building envelopes
MIT License
3 stars 1 forks source link

Provide `type` and `subtype` from IGSDB in the product data network #340

Open christoph-maurer opened 1 week ago

christoph-maurer commented 1 week ago

@simon-wacker For each data set, IGSDB has the key type with the possible values glazing orshading. It has also the key subtype with the possible values monolithic, coating, coated glass, film, applied film, interlayer and laminate. For at least one of our associated partners, it would be very helpful to have these values available in the GraphQL-API of the IGSDB. When you succeed with the thickness, can you easily add the two keys?

@danielmcquillen @RDmitchell Would it be ok for you if we do this?

christoph-maurer commented 1 week ago

More information about the subtypes is available at https://igsdb-v2.herokuapp.com/docs/help/whats-changed/type-subtype . Thank you @danielmcquillen !

simon-wacker commented 5 days ago

@christoph-maurer When you run the query

query AllData {
  allOpticalData {
    edges {
      node {
        type
        subtype
      }
    }
  }
}

against the IGSDB, for example on https://igsdb-v2.herokuapp.com/graphql/ (after logging in on https://igsdb-v2.herokuapp.com/), you receive type and subtype of all data sets. Is that just what you were asking for?